-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable4.html
More file actions
64 lines (62 loc) · 1.42 KB
/
table4.html
File metadata and controls
64 lines (62 loc) · 1.42 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta charset="utf-8">
<title>더 하임</title>
<style>
td {
border: 1px solid black;
margin-left: 0;
padding: 5px;
}
th {
border: 1px solid black;
margin-right: 0;
padding: 5px;
width: 120px;
}
</style>
</head>
<body>
<div align="center">
<h2>The heim 객실 소개</h2>
<table summary="4인실과 2인실이 있으며 기본은 1인당 2만원입니다">
<caption>
Room Service
</caption>
<col>
<col style="background:yellow">
<colgroup span="2" style="background:#ffc;"> </colgroup>
<tr>
<th>종류</th>
<th>크기</th>
<th>가격</th>
<th>부대시설</th>
</tr>
<tr>
<th>스탠다드(싱글)</th>
<td>2인실</td>
<td>1인당 20,000원</td>
<td>인터넷, TV</td>
</tr>
<tr>
<th rowspan="2">스탠다드(온돌)</th>
<td>2인실</td>
<td>1인당 20,000원</td>
<td>인터넷, TV</td>
</tr>
<tr>
<td>4인실</td>
<td>1인당 15,000원</td>
<td>인터넷, TV</td>
</tr>
<tr>
<th>로얄 스위트</th>
<td>2인실</td>
<td>1인당 30,000원</td>
<td>인터넷, TV, 테라스</td>
</tr>
</table>
</div>
</body>
</html>