-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-16" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Document</title>
</head>
<header>
<h1>Pokedex</h1>
</header>
<body>
<div id="container">
<div id="pokedex-container">
<div class="viewing-container">
<div id="viewer">
<div class="text-container">
<h2 id="pokemon-name" class="top"></h2>
<h3 id="pokemon-number"></h3>
</div>
<div id="image-container"></div>
<h3 id="pokemon-types" class="bottom"></h3>
</div>
</div>
<div class="searching-container">
<div id="information">
<h4 id="height"></h4>
<h4 id="weight"></h4>
<h4 id="base_experience"></h4>
<h4 id="abilities-label"></h4>
<ul id="abilities"></ul>
<h4 id="stats-label"></h4>
<ul id="stats"></ul>
<p id="flavor-text"></p>
</div>
<div id="search-container">
<form method="GET" submit="search" id="search">
<input
type="text"
name="search"
placeholder="Search"
id="search-input"
/>
<button type="submit" form="search" value="Submit">Submit</button>
</form>
</div>
</div>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>