-
Notifications
You must be signed in to change notification settings - Fork 0
/
saruStep21.html
73 lines (70 loc) · 1.81 KB
/
saruStep21.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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="saruStep21.css">
<title>Document</title>
</head>
<body>
<!-- <table border="1">
<tr>
<th>果物</th><th>味</th>
</tr> -->
<!-- <tr>
<td>イチゴ</td><td>甘い</td>
</tr>
<tr>
<td>レモン</td><td>酸っぱい
</td>
</tr>
</table> -->
<table>
<tr>
<th>果物</th><th colspan="2">特徴</th><th>人気</th>
</tr>
<tr>
<td>イチゴ</td><td rowspan="2">甘い</td><td>赤色</td><td>◉</td>
</tr>
<tr>
<td>りんご</td><td>赤色</td><td>○</td>
</tr>
<tr>
<td>レモン</td><td>酸っぱい</td><td>黄色</td><td>▲</td>
</tr>
</table>
<table>
<tr>
<td>イチゴ</td><td>甘い</td>
</tr>
</table>
<table>
<tr>
<th><span>果物<span></th><th><span>味<span></th><th><span>色<span></th>
</tr>
<tr>
<td>イチゴ</td><td>甘い</td><td>赤色</td>
</tr>
<tr>
<td>リンゴ</td><td>甘い</td><td>赤色</td>
</tr>
</table>
<table>
<tr>
<th colspan="3">果物</th>
</tr>
<tr>
<th>名前</th><th>特徴</th><th>色</th>
</tr>
<tr>
<td>イチゴ</td><td>甘い</td><td>赤色</td>
</tr>
<tr>
<td>りんご</td><td>甘い</td><td>赤色</td>
</tr>
<tr>
<td>レモン</td><td>酸っぱい</td><td>黄色</td>
</tr>
</table>
</body>
</html>