-
Notifications
You must be signed in to change notification settings - Fork 0
/
pokemon.html
39 lines (39 loc) · 1.38 KB
/
pokemon.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>pokemon</title>
</head>
<body>
<h1> First generation pokemon chart </h1>
<table border ="1">
<thead>
<tr>
<td>Image</td>
<td>Name</td>
<td>Type</td>
<td>Evolves to</td>
</tr>
</thead>
<tbody>
<tr>
<td><img src = "https://i.pinimg.com/originals/46/7e/db/467edb818bc862ef7f54dece5df4d762.png"></td>
<td> Bulbasaur </td>
<td> Grass/poision </td>
<td><a href = "https://pokemon.fandom.com/wiki/Ivysaur"> Ivysaur </a></td>
</tr>
<tr>
<td><img src = "https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTyWYGlDVIXJRgVD8LxzeiI5T0Zx1pTQRd38CMi8fF9d8W0fCT-"></td>
<td> Charmander </td>
<td> Fire </td>
<td><a href = "https://pokemon.fandom.com/wiki/Charmeleon"> Charmelon </a></td>
</tr>
<tr>
<td><img src = "https://www.stickpng.com/assets/images/580b57fcd9996e24bc43c325.png"></td>
<td> Pikachu </td>
<td> Electric </td>
<td><a href = "https://pokemon.fandom.com/wiki/Raichu"> Raichu </a></td>
</tr>
</tbody>
</table>
</body>
</html>