-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPokemon Table.html
45 lines (44 loc) · 1.59 KB
/
Pokemon Table.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
45
<!DOCTYPE html>
<html>
<head>
<title>Pokemon Chart Materialize</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet"
href = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<style>
div {
width : 10%;
height : 10%;
}
</style>
</head>
<body>
<h1>First Gen Pokemon Chart</h1>
<table class="striped table">
<tr>
<th>Image</th>
<th>Name</th>
<th>Type</th>
<th>Evolves To</th>
</tr>
<tr>
<td><img src="https://vignette.wikia.nocookie.net/pokemon/images/2/21/001Bulbasaur.png/revision/latest?cb=20140328190757" height="100%" width="50%"></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://vignette.wikia.nocookie.net/pokemon/images/7/73/004Charmander.png/revision/latest/scale-to-width-down/200?cb=20140724195345" height="100%" width="50%"></td>
<td>Charmander</td>
<td>Fire</td>
<td><a href="http://pokemon.wikia.com/wiki/Charmeleon">Charmeleon</a></td>
</tr>
<tr>
<td><img src="https://vignette.wikia.nocookie.net/pokemon/images/3/39/007Squirtle.png/revision/latest/scale-to-width-down/200?cb=20140328191525" height="100%" width="50%"></td>
<td>Squirtle</td>
<td>Water</td>
<td><a href="http://pokemon.wikia.com/wiki/Wartortle">Watortle</a></td>
</tr>
</table>
</body>
</html>