forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chart.html
36 lines (36 loc) · 782 Bytes
/
chart.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>dianasaur table</title>
</head>
<body>
<h2>First Gen Dianausaur chart</h2>
<table border="1">
<tr>
<th>Image</th>
<th>Name</th>
<th>Type</th>
<th><a href="">Evolves Info</a></th>
</tr>
<tr>
<td><img src="bulba.jpg"></td>
<td>Bulbasaur</td>
<td>Grass/Poison</td>
<td><a href="http://www.google.com">Ivysaur</a></td>
</tr>
<tr>
<td><img src="second.jpg"></td>
<td>Chariamemdar</td>
<td>Fire</td>
<td><a href="http://www.google.com">Charmialon</a></td>
</tr>
<tr>
<td><img src="third.jpg"></td>
<td>Squirtie</td>
<td>Water</td>
<td><a href="http://www.google.com">Wartortle</a></td>
</tr>
</table>
</body>
</html>