-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest06.html
More file actions
54 lines (54 loc) · 1.5 KB
/
Copy pathtest06.html
File metadata and controls
54 lines (54 loc) · 1.5 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>표 만들기(기본 구조)</title>
<style>
body{
font-size: 14px;
}
table{
width: 800px;
height: 100px;
border-collapse: collapse;
}
table td,th{
text-align: center;
border: 1px solid lightgray;
}
table th{
background-color: dodgerblue;
color: white;
}
table caption{
text-align: right;
margin-bottom: 10px;
}
</style>
</head>
<body>
<table >
<caption>부가세가(VAT) 포함된 실제 지불금액 입니다.</caption>
<tr>
<th>상품명</th>
<th>월정액</th>
<th>제공혜택</th>
</tr>
<tr>
<td>지상파 무제한 즐기기</td>
<td>14,300원</td>
<td>지상파 3사의 드라마, 예능 프로그램을 가장 빠르게 가장 경제적 서비스</td>
</tr>
<tr>
<td>CJENM 무제한 즐기기</td>
<td>14,300원</td>
<td>모든 드라마, 예능 프로그램을 무제한 볼수있는 인기 월정액 서비스</td>
</tr>
<tr>
<td>JTBC 무제한 즐기기</td>
<td>7,700원</td>
<td>JTBC 드라마, 예능 프로그램을 무제한으로 즐길 수 있는 인기 월정액 서비스</td>
</tr>
</table>
</body>
</html>