-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokédex</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="typecolors.css">
<script src="html.js"></script>
<script src="script.js"></script>
<script src="chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
</head>
<body onload="init()">
<header>
<img src="./img/Pokédex_logo.png" alt="">
</header>
<div id="pokedex">
</div>
<div class="buttonContainer">
<button id="load-more-button" onclick="expandPokedexNext()">load more</button>
</div>
<div id="portrait" onclick="closeView()">
<div class="mid">
<div id="singleView" onclick="noClose(event)">
</div>
</div>
</div>
<footer class="center">
<p>© 2024 Pascal Thelke </p>
</footer>
</body>
</html>