-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
374 lines (359 loc) · 12.2 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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<meta name="author" content="" />
<title>Gotta Fetch 'Em All</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico" />
<!-- Font Awesome icons -->
<script
src="https://use.fontawesome.com/releases/v5.15.1/js/all.js"
crossorigin="anonymous"
></script>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet"
/>
<!-- Favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="manifest" href="favicon/site.webmanifest" />
<!-- Core CSS -->
<link href="css/main.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
</head>
<body id="page-top">
<!-- Navigation-->
<nav
class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top"
id="mainNav"
>
<div class="container">
<a class="navbar-brand js-scroll-trigger" href="#page-top"
>Gotta Fetch 'Em All</a
>
<button
class="navbar-toggler navbar-toggler-right text-uppercase font-weight-bold bg-primary text-white rounded"
type="button"
data-toggle="collapse"
data-target="#navbarResponsive"
aria-controls="navbarResponsive"
aria-expanded="false"
aria-label="Toggle navigation"
>
Menu
<i class="fas fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#page-top"
>Home</a
>
</li>
<li class="nav-item mx-0 mx-lg-1">
<a
class="nav-link py-3 px-0 px-lg-3 rounded js-scroll-trigger"
href="#pokedex"
>Pokédex</a
>
</li>
</ul>
</div>
</div>
</nav>
<!-- Masthead-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<img class="masthead-avatar mb-5" src="assets/img/Logo.png" alt="" />
<h1 class="masthead-heading text-uppercase mb-0">
Gotta Fetch 'Em All
</h1>
<br />
<br />
<br />
<p class="masthead-subheading font-weight-light mb-0">
Simple Pokédex built using the PokéAPI.
</p>
</div>
</header>
<!-- Pokédex Section-->
<section class="page-section portfolio" id="pokedex">
<div class="container">
<h2
class="page-section-heading text-center text-uppercase text-light mb-0"
>
Select Pokémon Region
</h2>
<br />
<br />
<br />
<!-- Pokémon Region Items-->
<div class="row justify-content-center">
<!-- Region 1 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="kanto.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Kanto Region<br />(Gen 1)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/kanto.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 2 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="johto.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Johto Region<br />(Gen 2)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/johto.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 3 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="hoenn.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Hoenn Region<br />(Gen 3)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/hoenn.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 4 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="sinnoh.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Sinnoh Region<br />(Gen 4)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/sinnoh.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 5 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="unova.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Unova Region<br />(Gen 5)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/unova.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 6 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="kalos.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Kalos Region<br />(Gen 6)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/kalos.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 7 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="alola.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Alola Region<br />(Gen 7)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/alola.png"
alt=""
/>
</div>
</a>
</div>
<!-- Region 8 -->
<div class="col-md-6 col-lg-4 mb-5">
<a href="galar.html">
<div class="portfolio-item mx-auto">
<div
class="portfolio-item-caption d-flex align-items-center justify-content-center h-100 w-100"
>
<div
class="portfolio-item-caption-content text-center text-white"
>
<p class="masthead-subheading font-weight-dark mb-0">
Galar Region<br />(Gen 8)
</p>
</div>
</div>
<img
class="img-fluid"
src="assets/img/pokemon/galar.png"
alt=""
/>
</div>
</a>
</div>
</div>
</div>
</section>
<!-- Footer-->
<footer class="footer text-center">
<div class="container">
<div class="row">
<div class="col-lg-4 mb-5 mb-lg-0"></div>
<div class="col-lg-4 mb-5 mb-lg-0">
<h4 class="text-uppercase mb-4">Find me around the Web</h4>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://www.instagram.com/markj.lucas/"
target="blank"
><i class="fab fa-fw fa-instagram"></i
></a>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://github.com/MJLucas"
target="blank"
><i class="fab fa-fw fa-github"></i
></a>
<a
class="btn btn-outline-light btn-social mx-1"
href="https://www.linkedin.com/in/markjohnlucas/"
target="blank"
><i class="fab fa-fw fa-linkedin-in"></i
></a>
</div>
<div class="col-lg-4"></div>
</div>
</div>
</footer>
<!-- Copyright Section-->
<div class="copyright py-4 text-center text-white">
<div class="container">
Copyright © MJLucas
<script>
document.write(new Date().getFullYear());
</script>
</div>
</div>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes)-->
<div class="scroll-to-top d-lg-none position-fixed">
<a
class="js-scroll-trigger d-block text-center text-white rounded"
href="#page-top"
><i class="fa fa-chevron-up"></i
></a>
</div>
<!-- Bootstrap core JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Core theme JS-->
<script src="js/scripts.js"></script>
</body>
</html>