-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek1html.txt
More file actions
100 lines (98 loc) · 1.92 KB
/
Copy pathWeek1html.txt
File metadata and controls
100 lines (98 loc) · 1.92 KB
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
<div id="caption">Pokemon GO Top 5 Pokemon Stats</div>
<table border="1">
<thead>
<tr>
<th></th>
<th>Dragonite</th>
<th>Tyranitar</th>
<th>Blissey</th>
<th>Machamp</th>
<th>Vaporeon</th>
</tr>
</thead>
<tr>
<td class="rowHeader">Type</td>
<td>Flying/Dragon</td>
<td>Rock/Dark</td>
<td>Normal</td>
<td>Fighting</td>
<td>Water</td>
</tr>
<tr>
<td class="rowHeader">Max CP</td>
<td>3581</td>
<td>3670</td>
<td>3219</td>
<td>2889</td>
<td>3157</td>
</tr>
<tr>
<td class="rowHeader">Max HP</td>
<td>155</td>
<td>169</td>
<td>412</td>
<td>153</td>
<td>216</td>
</tr>
<tr>
<td class="rowHeader">Best Fast Move</td>
<td>Dragon Tail</td>
<td>Bite</td>
<td>Pound</td>
<td>Karate Chop</td>
<td>Water Gun</td>
</tr>
<tr>
<td class="rowHeader">Best Charged Move</td>
<td>Hurricane</td>
<td>Stone Edge</td>
<td>Hyper Beam</td>
<td>Close Combat</td>
<td>Hydro Pump</td>
</tr>
<tfoot>
<tr>
<td colspan="2">Footer 1</td>
<td colspan="4">Footer 2</td>
</tr>
</tfoot>
</table>
<ul>
<li>Dogs</li>
<ol>
<li>Aiko (F)</li>
<li>Buster (M)</li>
<li>Lavi (F)</li>
<li>Wally (M)</li>
</ol>
<li>Cats</li>
<ol>
<li>Ninja (F)</li>
<li>Shaq (M)</li>
<li>Moto (M)</li>
<li>Annie (F)</li>
</ol>
<li>Bearded Dragons</li>
<ol>
<li>Digger (F)</li>
</ol>
</ul>
<div id="outer-content">
<div id="inner-content">Look Here!</div>
</div>
<form>
<fieldset>
<legend>Some GET Data</legend>
<label>Text Here:
<input type="text" name="text_input" size="30" maxlength="100">
</label>
<br/>
<label>Number Here:
<input type="text" name="numerical_input" size="30" maxlength="100">
</label>
<br/>
<label>Password Here:
<input type="text" name="password_input" size="30" maxlength="100">
</label>
</fieldset>
</form>