-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPokemon
More file actions
66 lines (59 loc) · 1.46 KB
/
Pokemon
File metadata and controls
66 lines (59 loc) · 1.46 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
Attributes:
<img src="url"> ~a single attribute
<a href=”url”>link text</a>
<a href="http://www.1point3acres.com/bbs/">CLICK ME</a>
On HTTP protocol:包含http
##Click + COMMAND + click + COMMAND + click + COMMAND = 三排同时输入
##第二份table作业
##Here comes the cutiepie
<!DOCTYPE html>
<html>
<head>
<title>Pokemon Chart</title>
</head>
<body>
<h1>First Gen Pokemon Chart</h1>
<table border="1">
<thead>
<tr>
<th>Image</th>
<th>Name</th>
<th>Type</th>
<th>Evolves Into</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<img width="50" src="http://img4.wikia.nocookie.net/__cb20140328190757/pokemon/images/thumb/2/21/001Bulbasaur.png/200px-001Bulbasaur.png">
</td>
<td>Bulbasaur</td>
<td>Grass/Poison</td>
<td>
<a href="http://pokemon.wikia.com/wiki/Ivysaur">Ivysaur</a>
</td>
</tr>
<tr>
<td>
<img width="50" src="http://img4.wikia.nocookie.net/__cb20140724195345/pokemon/images/thumb/7/73/004Charmander.png/200px-004Charmander.png">
</td>
<td>Charmander</td>
<td>Fire</td>
<td>
<a href="http://pokemon.wikia.com/wiki/Ivysaur">Charmeleon</a>
</td>
</tr>
<tr>
<td>
<img width="50" src="http://img1.wikia.nocookie.net/__cb20140328191525/pokemon/images/thumb/3/39/007Squirtle.png/200px-007Squirtle.png">
</td>
<td>Squirtle</td>
<td>Water</td>
<td>
<a href="http://pokemon.wikia.com/wiki/Wartortle">Wartortle</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>