-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpokemon.html
More file actions
42 lines (33 loc) · 847 Bytes
/
pokemon.html
File metadata and controls
42 lines (33 loc) · 847 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>pokeman chart</title>
</head>
<body>
<h1>First gen pokemon chart</h1>
<table border="1">
<thead>
<tr>
<td>image
</td>
<td>name</td>
<td>type</td>
<td>evolves into</td>
</tr></thead>
<tbody>
<tr>
<td><img src="http://img4.wikia.nocookie.net/__cb20140328190757/pokemon/images/thumb/2/21/001Bulbasaur.png/200px-001Bulbasaur.png"></td>
<td>bulbasor</td>
<td>glass/poison</td>
<td><a href="http://pokemon.wikia.com/wiki/Ivysaur ">ivysaur</a></td>
</tr>
<tr>
<td><img src="http://img4.wikia.nocookie.net/__cb20140328190757/pokemon/images/thumb/2/21/001Bulbasaur.png/200px-001Bulbasaur.png"></td>
<td>bulbasor</td>
<td>glass/poison</td>
<td><a href="http://pokemon.wikia.com/wiki/Ivysaur ">ivysaur</a></td>
</tr>
</tbody>
</table>
</body>
</html>