-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest14.html
More file actions
81 lines (78 loc) · 1.9 KB
/
Copy pathtest14.html
File metadata and controls
81 lines (78 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>테이블 CSS</title>
<style>
caption {
caption-side: top;
margin-bottom: 20px;
font-size: 20px;
}
table {
width: 700px;
border-collapse: collapse;
table-layout: fixed;
}
th,td {
padding: 8px;
height: 50px;
text-align: center;
vertical-align: top;
border-bottom: 1px solid #ddd;
}
th {
background-color: #8eba41;
color: white;
}
tfoot {
background-color: cadetblue;
color: white;
}
</style>
</head>
<body>
<table>
<caption>크린토피아 남성의료 가격표 </caption>
<thead>
<tr>
<th>품목</th>
<th>일반요금</th>
<th>로얄요금</th>
</tr>
</thead>
<tbody>
<tr>
<td>와이셔츠</td>
<td>2,000</td>
<td>1,800</td>
</tr>
<tr>
<td>남방</td>
<td>2,600</td>
<td>4,000</td>
</tr>
<tr>
<td>정장 상의</td>
<td>3,300</td>
<td>5,200</td>
</tr>
<tr>
<td>정장 하의</td>
<td>2,800</td>
<td>4,000</td>
</tr>
<tr>
<td>양복/예복 조끼</td>
<td>1,300</td>
<td>2,600</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">크린토피아 고객센터 : 080-888-8888 / 상담 시간 : 오전 9:00~오후 6:00</td>
</tr>
</tfoot>
</table>
</body>
</html>