-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtables1.html
109 lines (96 loc) · 2.53 KB
/
tables1.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tables</title>
</head>
<!-- this is my table hold, all 5 table heads are going to be bolded -->
<body>
<table>
<thead>
<tr>
<th>Pokemon Name</th>
<th>Type</th>
<th>Abilities</th>
<th>Weakness</th>
<th>Evolution</th>
</tr>
</thead>
<!-- Below, is my table body, table rows and table down for 10 of my favorite pokemon -->
<tbody>
<tr>
<td>JIGGLYPUFF (my fave)</td>
<td>Normal/Fairy</td>
<td>Cute Charm</td>
<td>Poison</td>
<td>Igglypuff</td>
</tr>
<tr>
<td>Ursaring</td>
<td>Normal</td>
<td>Quick Feet</td>
<td>Fighting</td>
<td>Teddiursa</td>
</tr>
<tr>
<td>Rayquaza</td>
<td>Dragon</td>
<td>Air Lock (elimates the effects of weather)</td>
<td>Fairy</td>
<td>This Pokemon does not evolve</td>
</tr>
<tr>
<td>Arceus</td>
<td>Normal</td>
<td>Multitype</td>
<td>Fighting</td>
<td>This Pokemon does not evolve</td>
</tr>
<tr>
<td>Bulbasaur</td>
<td>Poison</td>
<td>Overgrow</td>
<td>Flying</td>
<td>Ivysaur</td>
</tr>
<tr>
<td>Charmeleon</td>
<td>Fire</td>
<td>Blaze</td>
<td>Water</td>
<td>Charizard</td>
</tr>
<tr>
<td>Squirtle</td>
<td>Water</td>
<td>Torrent</td>
<td>Electric</td>
<td>Wartortle</td>
</tr>
<tr>
<td>Pikachu</td>
<td>Electric</td>
<td>Static</td>
<td>Ground</td>
<td>Raichu</td>
</tr>
<tr>
<td>Arcanine</td>
<td>Fire</td>
<td>Flash Fire</td>
<td>Water</td>
<td>Growlithe</td>
</tr>
<tr>
<td>Nidorina</td>
<td>Poison</td>
<td>Poison Point</td>
<td>Psychic</td>
<td>Nidoqueen</td>
</tr>
</table>
</body>
<!-- this is the end of my table -->
</html>