-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta property="og:title" content="PokeDex by Matt McKnight">
<meta property="og:description" content="a student made website project">
<meta property="og:image" content="">
<meta property="og:url" content="">
<meta name="twitter:card" content="summary_large_image">
<meta property="og:site_name" content="">
<meta name="twitter:image:alt" content="">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<link
href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap"
rel="stylesheet"/>
<script defer src="./app.js"></script>
<link rel="stylesheet" href="style.css" />
<title>PokeDex</title>
</head>
<body>
<header>
<h1>PokeDex</h1>
<h3>by Matt McKnight</h3>
</header>
<article>
<div class="circle"></div>
<div class="circle" id="red-circle"></div>
<div class="circle" id="yellow-circle"></div>
<div class="circle" id="green-circle"></div>
</article>
<hr class="art" />
<main>
<div class="box-div">
<div class="search-section">
<input id="input" type="text" placeholder="Type a name or id" />
<button id="search">Search</button>
</div>
<div id="sprite-display"></div>
<div id="text-display"></div>
</div>
</main>
<footer>
<div class="right">
<div class="top"></div>
<div class="hor"></div>
<div class="bottom"></div>
</div>
<div class="left">
<div class="blue"></div>
<div class="yellow"></div>
</div>
</footer>
</body>
</html>