-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 947 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokedex</title>
<link rel="stylesheet" href="pokedex.css">
<script src="pokdex.js"></script>
</head>
<body>
<div id="content-box">
<!-- Left Side, display pokemon info -->
<div id="pokemon-info">
<img id="pokemon-img" src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/1.png">
<div id="pokemon-types">
<span class="type-box grass">GRASS</span><span class="type-box poison">POISON</span>
</div>
<div id="pokemon-description"></div>
</div>
<!-- Right side, display pokemon list -->
<div id="pokemon-list">
</div>
</div>
</body>
</html>