forked from Technigo/exercise-w7-fetch-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (34 loc) · 764 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Fetch API</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/styles.css" />
</head>
<body>
<img
src="https://images.unsplash.com/photo-1580065632882-3d6d4ca954ff?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxNDU4OXwwfDF8cmFuZG9tfHx8fHx8fHx8MTYzMTAwMjM0Nw&ixlib=rb-1.2.1&q=80&w=400"
id="image"
/>
<table>
<tr>
<td>Pokemon name</td>
<td id="name">?</td>
</tr>
<tr>
<td>Weight</td>
<td id="weight">?</td>
</tr>
<tr>
<td>Height</td>
<td id="height">?</td>
</tr>
<tr>
<td>Types</td>
<td id="types">?</td>
</tr>
</table>
<script src="./src/index.js"></script>
</body>
</html>