-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
358 lines (325 loc) · 11.1 KB
/
index.html
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeSquad Comics</title>
<link rel="stylesheet" href="./public/styles/styles.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Fredericka+the+Great&family=Open+Sans&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/27b39b2da2.js"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Navigation Bar -->
<header class="header">
<nav class="navbar">
<div class="navbar-container">
<div class="logo">
<a href="./index.html">
<img
class
src="./public/images/CodeSquad-Comics-logo.png"
alt="CodeSquad-Comics-logo"
/>
</a>
</div>
<div class="nav-links">
<ul class>
<li><a href="./index.html">HOME</a></li>
<li><a href="./about.html">ABOUT</a></li>
<li><a href="./login.html">LOGIN</a></li>
</ul>
</div>
<a class="hamburger" href="#" class="icon">
<i class="fa fa-bars"></i>
</a>
</div>
</nav>
</header>
<!-- Main Section -->
<main class="main-container bg-gradient">
<div class="comics-container">
<h1 class="h1-title">CODESQUAD COMICS</h1>
<div class="comic-tiles">
<p>
CodeSquad Comics is a collection of graphic novels read by Nicole
Payne. The site is intended to display comic book covers along with
information about each book, including the author, a rating, and
other details about the graphic novel. Browse through the complete
collection below. Click on the cover image or the Details link to
see even more information about each graphic novel including the
publisher, genre, number of pages, and a brief synopsis. The About
page includes meta information about this collection. Login is only
available to the site administrator at this time.
</p>
</div>
</div>
<div class="comics-container">
<h2 class="h2-title">COMPLETE COMIC COLLECTION</h2>
<div class="comic-tiles">
<!-- Fun Home Comic -->
<div class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/fun-home.jpg"
alt="Fun-Home-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Fun Home: A Family Tragicomic</em></li>
<li>by Alison Bechdel</li>
<li>5 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</div>
<!-- Watchmen Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/watchmen.jpg"
alt="Watchmen-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Watchmen</em></li>
<li>by Alan Moore</li>
<li>5 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Hunter X Hunter Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/hunter-x-hunter.jpg"
alt="Hunter-X-Hunter-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Hunter X Hunter Vol. 1</em></li>
<li>by Yoshihiro Togashi</li>
<li>5 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Lumberjanes Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/lumberjanes.jpg"
alt="Lumberjanes-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Lumberjanes Vol. 1</em></li>
<li>by Noelle Stevenson</li>
<li>4 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- One Piece Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/one-piece.jpg"
alt="One-Piece-Comic"
/>
</a>
<ul class="comic-details">
<li><em>One Piece, Vol. 1: Romance Dawn</em></li>
<li>by Eiichiro Oda</li>
<li>5 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Wake Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/wake.jpg"
alt="Wake-Comic"
/>
</a>
<ul class="comic-details">
<li>
<em>Wake: The Hidden History of Women-Led Slave Revolts</em>
</li>
<li>by Rebecca Hall</li>
<li>4 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Black Panther Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/black-panther.jpg"
alt="Black-Panther-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Black Panther: A Nation Under Our Feet Book 1</em></li>
<li>by Ta-Nehisi Coates</li>
<li>3 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- The Walking Dead Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/the-walking-dead.jpg"
alt="The-Walking-Dead-Comic"
/>
</a>
<ul class="comic-details">
<li><em>The Walking Dead, Vol. 1: Days Gone Bye</em></li>
<li>by Robert Kirkman</li>
<li>4 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- March Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/march.jpg"
alt="March-Comic"
/>
</a>
<ul class="comic-details">
<li><em>March: Book One</em></li>
<li>by John Lewis</li>
<li>5 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Batman Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/batman.jpg"
alt="Batman-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Batman: The Dark Knight Returns</em></li>
<li>by Frank Miller</li>
<li>3 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Queer Comic -->
<article class="collection-container">
<a href="#">
<img
class="comic-img"
src="./public/images/queer.jpg"
alt="Queer-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Queer: A Graphic History</em></li>
<li>by Meg-John Barker</li>
<li>4 stars</li>
<li><a class="details-link" href="#">Details</a></li>
</ul>
</article>
<!-- Parable of the Sower Comic -->
<article class="collection-container">
<a href="./parable-of-the-sower.html">
<img
class="comic-img"
src="./public/images/parable-of-the-sower.jpg"
alt="Parable-of-the-Sower-Comic"
/>
</a>
<ul class="comic-details">
<li><em>Parable of the Sower</em></li>
<li>by Octavia E. Butler</li>
<li>4 stars</li>
<li>
<a class="details-link" href="./parable-of-the-sower.html"
>Details</a
>
</li>
</ul>
</article>
</div>
<div class="form-submit">
<button class="btn" type="submit">DISPLAY MORE</button>
</div>
</div>
</main>
<!-- Footer Section -->
<footer class="footer">
<section class="footer-container">
<div class="footer-column">
<h3 class="footer-h3">VISIT US</h3>
<ul class="footer-links">
<li>CodeSquad Comics</li>
<li>123 Dorchester Avenue</li>
<li>Boston, MA 02124</li>
</ul>
</div>
<div class="footer-column">
<h3 class="footer-h3">LINKS</h3>
<ul class="footer-links">
<li><a href="./index.html">Home</a></li>
<li><a href="./about.html">About</a></li>
<li><a href="./login.html">Login</a></li>
</ul>
</div>
<div class="footer-column">
<h3 class="footer-h3">FOLLOW US</h3>
<ul class="footer-links">
<div class="social">
<li>
<a href="#"><i class="fa-brands fa-facebook"></i></a>
</li>
<li>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
</li>
<li>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
</li>
</div>
</ul>
</div>
<div class="footer-column">
<h3 class="footer-h3">A PRODUCT OF</h3>
<a
href="http://codesquad.org/"
target="_blank"
rel="noopener noreferrer"
>
<img
class="footer-img-size"
src="./public/images/CodeSquad-logo-b.png"
alt="CodeSquad-Footer-logo"
/>
</a>
</div>
</section>
</footer>
</body>
</html>