-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>The RESTful Pokémon API</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="styles.css" class="">
</head>
<body>
<div class="container">
<h1>My API projects No.3: PokéAPI</h1>
<p>The RESTful Pokémon API courtesy of Pokeapi.co</p>
<div class="app-wrap">
<!-- <button>Click</button> -->
<div class="row mb-2 p-4 rounded bg-green">
<div class="col-md-8">
<h1 id="name"></h1>
<p class="pt-3">Pokémon <span class="id"></span></p>
<div class="pb-3"><span class="species_name"></span><span class="species"></span></div>
<p class="weight"></p>
<p class="experience"></p>
<p class="abilities"></p>
</div>
<div class="col-md-4 bg-white rounded">
<div class="poke_pic"></div>
</div>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>