-
Notifications
You must be signed in to change notification settings - Fork 0
/
4-1-3.html
47 lines (47 loc) · 903 Bytes
/
4-1-3.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>상품 소개 페이지</title>
<style>
table{
border:1px solid #ccc;
border-collapse: collapse
}
td,th{
border:1px solid #ccc;
padding:10px;
}
</style>
</head>
<body>
<h1>상품 구성</h1>
<table>
<caption>선물용과 가정용 상품 구성</caption>
<tr>
<th>용도</th>
<th>중량</th>
<th>갯수</th>
<th>가격</th>
</tr>
<tr>
<td>선물용</td>
<td>3KG</td>
<td>11~16과</td>
<td>35,000원</td>
</tr>
<tr>
<td>선물용</td>
<td>3KG</td>
<td>11~16과</td>
<td>35,000원</td>
</tr>
<tr>
<td>선물용</td>
<td>3KG</td>
<td>11~16과</td>
<td>35,000원</td>
</tr>
</tr>
</table>
</body>