-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (88 loc) · 4.39 KB
/
index.html
File metadata and controls
98 lines (88 loc) · 4.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="favicon/favicon.ico" />
<link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Piedra&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="dist/style.css" />
<title>
jQuery Pokédex
</title>
</head>
<body>
<nav class="navbar navbar-expand-md bg-dark navbar-light fixed-top">
<a class="navbar-brand" href="https://mmmenges.github.io/portfolio-website/index.html" target="_blank">
<img src="img/pokemon_logo.png" alt="myPortfolio" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"> </span>
</button>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="https://mmmenges.github.io/portfolio-website/index.html" target="_blank">
My Website
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.pokemon.com/us/pokedex" target="_blank">
Official Pokédex
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://pokemon.fandom.com/wiki/Pok%C3%A9mon_Wiki" target="_blank">
Pokémon Wiki
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://pokemon-planet.com" target="_blank">
Poképédia
</a>
</li>
</ul>
</nav>
<br />
<br />
<br />
<br />
<div class="header" id="myHeader">
<h1>Check out the Pokémon on this Website</h1>
<br>
</div>
<div class="modal fade" id="pokemon-details" tabindex="-1" role="dialog" aria-labelledby="pokemon-details-label" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true"></span>
</button>
</div>
<div class="modal-body"></div>
</div>
</div>
</div>
<div class="pokemon-list list-group"></div>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
<footer class="page-footer">
<br>
<div class="fim">
<p>Find me on</p>
</div>
<div class="social-media">
<a href="https://github.com/mMmenges" target="_blank"><img src="img/github.svg" alt="GitHub" height="60" width="auto" /></a>
<a href="https://twitter.com/michaelmenges17" target="_blank"><img src="img/twitter.svg" alt="Twitter" height="60" width="auto" /></a>
<a href="https://de.linkedin.com/in/michael-menges-7323bb143" target="_blank"><img src="img/linkedin.svg" height="60" width="auto" alt="LinkedIn" /></a>
</div>
<br>
</footer>
<script src="js/tota11y.min.js"></script>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="dist/code.min.js"></script>
</body>
</html>