-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExample_05.html
More file actions
96 lines (96 loc) · 2.73 KB
/
Copy pathExample_05.html
File metadata and controls
96 lines (96 loc) · 2.73 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>인터넷 요금표</title>
<style>
body{
font: size 16px;
}
table{
width: 1200px;
height: 300px;
border-collapse: collapse;
}
table td,th{
text-align: center;
border: 1px solid lightgray;
}
table th{
background-color: rgb(51, 5, 177);
color: white;
}
table caption{
text-align: right;
margin-bottom: 10px;
}
</style>
</head>
<body>
<table border="1">
<caption>부가세 포함된 실제 금액입니다.</caption>
<tr>
<th rowspan="2">인터넷 종류</th>
<th rowspan="2">할인상품</th>
<th colspan="6">모바일 요금 총액에 따른 할인 금액</th>
</tr>
<tr>
<th>22,000원 미만</th>
<th>22,000원 이상</th>
<th>64,900원 이상</th>
<th>108,900원 이상</th>
<th>141,900원 이상</th>
<th>174,900원 이상</th>
</tr>
<tr>
<td rowspan="3">10GIGA 인터넷, GIGA인터넷</td>
<td>총 할인금액</td>
<td>2,200원 할인</td>
<td>5,500원 할인</td>
<td>11,000원 할인</td>
<td>22,110원 할인</td>
<td>27,610원 할인</td>
<td>33,110원 할인</td>
</tr>
<tr>
<td>인터넷 할인금액</td>
<td>2,200원 할인</td>
<td colspan="5">5,500원 할인</td>
</tr>
<tr>
<td>모바일 할인금액</td>
<td>-</td>
<td>-</td>
<td>5,500원 할인</td>
<td>16,610원 할인</td>
<td>22,110원 할인</td>
<td>27,610원 할인</td>
</tr>
<tr>
<td rowspan="3">인터넷 최대 100M</td>
<td>총 할인금액</td>
<td>1,650원 할인</td>
<td>3,300원 할인</td>
<td>8,800원 할인</td>
<td>19,800원 할인</td>
<td>24,200원 할인</td>
<td>28,600원 할인</td>
</tr>
<tr>
<td>인터넷 할인금액</td>
<td>1,650원 할인</td>
<td>3,300원 할인</td>
<td colspan="4">5,500원 할인</td>
</tr>
<tr>
<td>모바일 할인금액</td>
<td>-</td>
<td>-</td>
<td>3,300원 할인</td>
<td>14,300원 할인</td>
<td>18,700원 할인</td>
<td>23,100원 할인</td>
</tr>
</table>
</body>
</html>