-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsourceCode.html
More file actions
200 lines (193 loc) · 4.53 KB
/
sourceCode.html
File metadata and controls
200 lines (193 loc) · 4.53 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
<!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> Source Code - 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;
}
td a, th a {
font-family: "Trebuchet MS", Sans-Serif;
color: white;
text-align: center;
text-decoration: none;
}
th a:hover {
color: #111;
}
td a:hover {
color: #666633;
}
.active {
background-color: #666633;
}
li {
display: inline-block;
}
div {
margin-left: 30%;
margin-right: 30%;
}
.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;
}
h2 {
text-align: center;
font-family: "Trebuchet MS", Sans-Serif;
color:#666633;
}
h3 {
text-align: center;
font-family: "Trebuchet MS", Sans-Serif;
color:#333;
}
h5 {
text-align: center;
}
p {
font-family: "Trebuchet MS", Sans-Serif;
text-indent: 50px;
font-size: 20px;
line-height: 1.6;
text-decoration: none; !important
}
td, th {
font-family: "Trebuchet MS", Sans-Serif;
text-indent: 50px;
font-size: 20px;
line-height: 1.6;
text-align: left;
text-decoration: none; !important\
border-collapse: collapse;
padding: 10px;
}
td a {
color: black;
}
th a {
color:#666633;
}
a {
text-decoration: none; !important
}
p.solid {
border-style: solid;
padding: 5px;
}
hr {
width: 90%;
}
table {
border-collapse: collapse;
}
</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" class="active"> 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"> Home </a> </li>
</ul>
<div style="margin-top:80px">
<h1> Source Code </h1>
</div>
<br>
<hr>
<br>
<h2> Here's a table with links that show all of the code for each page on our site, except this one: </h2>
<br>
<div>
<table border="1px" style="width:100%;">
<tr>
<th colspan="2"> Source Code </th>
</tr>
<tr>
<th colspan="2"> <a href="code/homeCode.html">Home Page</a> </th>
<tr>
<tr>
<th rowspan="2"> <a href="code/gameCode.html">Games</a> </th>
<td> <a href="code/hadesCode.html">Hades</a> </td>
</tr>
<tr>
<td> <a href="code/marioCode.html">Super Mario</a> </td>
</tr>
<tr>
<th rowspan="2"> <a href="code/movieCode.html">Movies</a> </th>
<td> <a href="code/lucaCode.html">Luca</a> </td>
</tr>
<tr>
<td> <a href="code/djangoCode.html">Django Unchained</a> </td>
</tr>
<tr>
<th rowspan="2"> <a href="code/bookCode.html">Books</a> </th>
<td> <a href="code/theShiningCode.html">The Shining</a> </td>
</tr>
<tr>
<td> <a href="code/slaughterhouseCode.html">Slaughterhouse-Five</a> </td>
</tr>
</table>
</div>
<br>
<br>
<hr>
<br>
<br>
</body>
</html>