-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable3.html
More file actions
38 lines (36 loc) · 852 Bytes
/
table3.html
File metadata and controls
38 lines (36 loc) · 852 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko">
<head>
<meta charset = 'UTF-8'>
<TITLE> 테이블 </TITLE>
</head>
<body>
<table border="1" rules="groups" summary="내가 가진 애플의 스마트 기기">
<caption>
애플 제품
</caption>
<thead>
<tr>
<th scope="col">기기명</th>
<th scope="col">제품모델</th>
</tr>
</thead>
<tfoot>
<tr>
<th scope="col">합계</th>
<th scope="col">2대</th>
</tr>
</tfoot>
<tbody>
<tr>
<th scope="row">iPad</th>
<td>iPad2</td>
</tr>
<tr>
<th scope="row">iPhone</th>
<td>iPhone 4S</td>
</tr>
</tbody>
</table>
</body>
</html>