forked from ChaoticTeal/json-code-along
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.05 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<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>Data Time!</title>
<script src="main.js" defer></script>
</head>
<body>
<h1 id="poke_name">#722 - Rowlet</h1>
<div id="poke_content">
<div id="poke_preview">
<img id="poke_img" src="https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/other/home/722.png"/>
<h3 id="poke_types">grass/flying type</h3>
</div>
<div>
<h2>Base Stats</h2>
<div id="poke_stats">
<div id="hp">HP</div>
<div id="atk">Atk</div>
<div id="def">Def</div>
<div id="sp_atk">Sp. Atk</div>
<div id="sp_def">Sp. Def</div>
<div id="spd">Spd</div>
</div>
</div>
</div>
<button id="random_btn">Random Starter</button>
</body>
</html>