-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
102 lines (101 loc) · 2.63 KB
/
template.html
File metadata and controls
102 lines (101 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en-US">
<head>
<!--
blue: #0099ff
green: #009933
image in nav bar: <img src="images/bow2.png" alt="bow icon" height="30" width="20">
-->
<meta charset="UTF-8">
<meta name="description" content="Review Website">
<meta name="keywords" content="HTML, CSS, JavaScript">
<meta name="author" content="Calvin Bunker">
<title> TEMPLATE - Fellowship </title>
<style>
ul {
position: fixed;
top: 0;
left: 0;
width: 100%;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
.left {
float: left;
}
li {
float: right;
}
li a {
font-family: "Trebuchet MS", Sans-Serif;
display: block;
color: white;
padding: 14px 16px;
text-align: center;
text-decoration: none;
}
a p {
display: block;
color: white;
}
a p:hover {
background-color: #666633;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: #666633;
}
li {
display: inline-block;
}
div {
margin-top: 80px;
}
.div2 {
margin-right: 20%;
margin-left: 20%;
}
.div3 {
margin-right: 10%;
margin-left: 10%;
margin-bottom: 50px;
width: 60%;
}
h1 {
text-align: center;
font-family: "Trebuchet MS", Sans-Serif;
color:#666633;
}
p {
font-family: "Trebuchet MS", Sans-Serif;
text-indent: 50px;
font-size: 20px;
line-height: 1.6;
text-decoration: none; !important
}
a {
text-decoration: none; !important
}
p.solid {
border-style: solid;
padding: 5px;
}
</style>
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<ul>
<li class="left"> <a href="index.html"><em> <b> The Fellowship </b> </em> </a> </li>
<li> <a href="sourceCode.html"> Source Code </a> </li>
<li> <a href="bookList.html"> Book Reviews </a> </li>
<li> <a href="movieList.html"> Movie Reviews </a> </li>
<li> <a href="gameList.html"> Game Reviews </a> </li>
<li> <a href="index.html" class="active"> Home </a> </li>
</ul>
</body>
</html>