-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTable.html
More file actions
209 lines (209 loc) · 4.51 KB
/
Table.html
File metadata and controls
209 lines (209 loc) · 4.51 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>Table</title>
</head>
<body>
<table border="1">
<tr>
<th>제목셀</th>
<td>1행 2열</td>
<td>1행 3열</td>
</tr>
<tr>
<th>제목셀</th>
<td>2행 2열</td>
<td>2행 3열</td>
</tr>
<tr>
<th>제목셀</th>
<td>3행 2열</td>
<td>3행 3열</td>
</tr>
</table>
<table border="2">
<tr>
<th>이름</th>
<td></td>
<th>연락처</th>
<td></td>
</tr>
<tr>
<th>주소</th>
<td colspan="3"></td>
</tr>
<tr>
<th>자기소개</th>
<td colspan="3"></td>
</tr>
<tr>
<th>성장과정</th>
<td colspan="3"></td>
</tr>
</table>
<figcaption>
<p>국내에서 자주 사용하는 <b>모던 브라우저</b></p>
</figcaption>
<p id="summary">
다음 표는 HTML5를 지원하는 모던(Modern Browser)를 정리한것입니다. 최신
버전 일수록 HTML5 를 좀 더 많이 지원하기 때문에 최신 버전을 다운로드 하는
것이 좋습니다.
</p>
<table border="3" aria-describedby="summary">
<caption>
Modern Browser
</caption>
<tr>
<th>브라우저</th>
<th>제조업체</th>
<th>다운로드</th>
</tr>
<tr>
<th>크롬(Chrom)</th>
<th>Google</th>
<th>https://www.google.com/chrome</th>
</tr>
<tr>
<th>파이어폭스(Firefox)</th>
<th>Mozilla</th>
<th>https://www.mozilla.org/ko/firefox</th>
</tr>
<tr>
<th>엣지(Edge)</th>
<th>Microsoft</th>
<th>https://www.microsoft.com/ko-kr/windows/microsoft-edge</th>
</tr>
</table>
재무상태표
<table border="1">
<tr>
<td rowspan="2">자산: 현금,<br />현금 외 자산</td>
<td>부채:차입금</td>
</tr>
<tr>
<td>자본:자본금 , 이익잉여금</td>
</tr>
</table>
<table border="2">
<caption>
제주특별자치도 학교현황(2015.4.1 기준)
</caption>
<thead>
<tr>
<th>구분</th>
<th>학교수</th>
<th>학급수</th>
<th>학생수</th>
<th>교원수</th>
</tr>
</thead>
<tbody>
<tr>
<th>유치원</th>
<td>117</td>
<td>252</td>
<td>5,547</td>
<td>474</td>
</tr>
<tr>
<th>초등학교</th>
<td>111</td>
<td>1,720</td>
<td>37,686</td>
<td>2,632</td>
</tr>
<tr>
<th>중학교</th>
<td>44</td>
<td>699</td>
<td>21,274</td>
<td>1,412</td>
</tr>
<tr>
<th>고등학교</th>
<td>29</td>
<td>676</td>
<td>22,019</td>
<td>1,433</td>
</tr>
<tr>
<th>특수학교</th>
<td>3</td>
<td>90</td>
<td>428</td>
<td>160</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>합계</th>
<td>304</td>
<td>3,437</td>
<td>86,954</td>
<td>6,111</td>
</tr>
</tfoot>
</table>
<table border="2">
<caption>
colgroup 연습!!
</caption>
<colgroup>
<col />
<col span="2" style="background-color: blue;" />
<col style="background-color: yellow;" />
</colgroup>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<table border="1">
<caption>
1인당 연간 설탕 소비량
<small>(단위:kg)</small>
</caption>
<colgroup>
<col style="background: #eee;" />
<col />
</colgroup>
<tr>
<th>WHO 권장량</th>
<td>18.25</td>
</tr>
<tr>
<th>한국</th>
<td>22</td>
</tr>
<tr>
<th>중국</th>
<td>25</td>
</tr>
<tr>
<th>싱가포르</th>
<td>58</td>
</tr>
<tr>
<th>미국</th>
<td>33</td>
</tr>
<tr>
<th>브라질</th>
<td>69</td>
</tr>
<tr>
<th>세계평균</th>
<td>23</td>
</tr>
</table>
</body>
</html>