-
Notifications
You must be signed in to change notification settings - Fork 0
/
exercise_table.html
40 lines (33 loc) · 1.05 KB
/
exercise_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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>テーブルの演習</title>
</head>
<body>
<h2>テーブルの演習</h2>
<table border="1">
<tr>
<th>名前</th>
<th>画像</th>
<th>科目</th>
</tr>
<tr>
<td><a href="https://www.google.co.jp/?client=safari&channel=mac_bm">りんご</a></td>
<td><img src="https://dl.dropboxusercontent.com/s/c71f6cjf7gozv1m/apple.jpg"></td>
<td>バラ科リンゴ属</td>
</tr>
<tr>
<td><a href="https://www.google.co.jp/?client=safari&channel=mac_bm">ミカン</a></td>
<td><img src="https://dl.dropboxusercontent.com/s/gd36q1pssg6py1e/orange.jpg"></td>
<td>ミカン科ミカン属</td>
</tr>
<tr>
<td><a href="https://www.google.co.jp/?client=safari&channel=mac_b">ブドウ</a></td>
<td><img src="https://dl.dropboxusercontent.com/s/6666axokz3ydqa9/grape.jpg
"></td>
<td>ブドウ科ブドウ属</td>
</tr>
</table>
</body>
</html>