-
Notifications
You must be signed in to change notification settings - Fork 1
/
pokemon.html
44 lines (39 loc) · 1.52 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
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Pokemon</title>
</head>
<body>
<h1>first gen pokemon</h1>
<table border="2">
<thead>
<tr>
<th>IMAGE</th>
<th>Name</th>
<th>Type</th>
<th>Evolves</th>
</tr>
</thead>
<tbody>
<tr>
<td><img src="https://previews.123rf.com/images/chutimakuanamon/chutimakuanamon1706/chutimakuanamon170600216/80664845-pokemon-bulbasaur-illustration-pokemon-go-game.jpg"></td>
<td>Bulbasaur</td>
<td>Grass/poison</td>
<td><a href="http://pokemon.wikia.com/wiki/Ivysaur">Ivysaur</a></td>
</tr>
<tr>
<td><img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgaQ5lldk5wfMqjiRbb1XRCvUCuMHGVDMflOEP-pFKgPvmscqm"></td>
<td>Charmander</td>
<td>Fire</td>
<td><a href="http://pokemon.wikia.com/wiki/Charmelon">Charmeleon</a></td>
</tr>
<tr>
<td><img src="https://assets.pokemon.com/assets/cms2/img/pokedex/full/007.png"> </td>
<td>Squirtle</td>
<td>Water</td>
<td><a href="http://pokemon.wikia.com/wiki/Wartortle">Wartortle</a> </td>
</tr>
</tbody>
</table>
</body>
</html>