-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable1.html
More file actions
54 lines (52 loc) · 957 Bytes
/
table1.html
File metadata and controls
54 lines (52 loc) · 957 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="ko">
<head>
<meta charset = 'UTF-8'>
<TITLE> 테이블 </TITLE>
</head>
<body>
<h1>테이블의 기본형식</h1>
<table border="1" >
<tr>
<th>기기명</th>
<th>제품모델</th>
</tr>
<tr>
<td>iPhone</td>
<td>iPhone 3G</td>
</tr>
<tr>
<td>iPhone</td>
<td>iPhone 3GS</td>
</tr>
<tr>
<td>iPhone</td>
<td>iPhone 4</td>
</tr>
<tr>
<td>iPhone</td>
<td>iPhone 4S</td>
</tr>
<tr>
<td>iPhone</td>
<td>iPhone 5</td>
</tr>
<tr>
<td>iPad</td>
<td>iPad</td>
</tr>
<tr>
<td>iPad</td>
<td>iPad 2</td>
</tr>
<tr>
<td>iPad</td>
<td>New iPad</td>
</tr>
<tr>
<td>iPad</td>
<td>iPad Mini</td>
</tr>
</table>
</body>
</html>