Showing
1 changed file
with
63 additions
and
0 deletions
html_ex03.html
0 → 100644
1 | + | ||
2 | +<!DOCTYPE html> | ||
3 | +<html lang="ko"> | ||
4 | +<head> | ||
5 | + <meta charset="utf-8"> | ||
6 | +</head> | ||
7 | +<body> | ||
8 | +<table border ="1"> | ||
9 | +<caption> 홈런순위 </caption> | ||
10 | +<thead> | ||
11 | + <tr> | ||
12 | + <th> 분류</th> | ||
13 | + <th> 제품명 </th> | ||
14 | + <th> 단가 </th> | ||
15 | + <th> 수량 </th> | ||
16 | + <th> 금액 </th> | ||
17 | + </tr> | ||
18 | +</thead> | ||
19 | +<tbody> | ||
20 | +<tr> | ||
21 | +<th rowspan ="3" > 공산품 </th> | ||
22 | + | ||
23 | +<td> iPhone </td> | ||
24 | +<td> 900,000 </td> | ||
25 | +<td> 2</td> | ||
26 | +<td> 1,800,000 </td> | ||
27 | + | ||
28 | +<tr> | ||
29 | +<td> LED TV </td> | ||
30 | +<td> 3,000,000 </td> | ||
31 | +<td> 3 </td> | ||
32 | +<td> 9,000,000 </td> | ||
33 | +</tr> | ||
34 | + | ||
35 | +<th colspan = "3"> 소계 </th> | ||
36 | +<td> 10,800,000 </td> | ||
37 | + | ||
38 | +</tr> | ||
39 | + | ||
40 | +<tr> | ||
41 | +<th rowspan = "2"> 농산품</th> | ||
42 | + | ||
43 | +<td> 인삼</td> | ||
44 | +<td> 10,000</td> | ||
45 | +<td> 200 </td> | ||
46 | +<td> 2,000,000 </td> | ||
47 | + | ||
48 | +<tr> | ||
49 | +<th colspan = "3"> 소계 </th> | ||
50 | +<th> 2,000,000 </th> | ||
51 | +</tr> | ||
52 | +</tbody> | ||
53 | + | ||
54 | +<tfoot> | ||
55 | +<tr> | ||
56 | +<th colspan="4">합계</th> | ||
57 | +<th> 12,800,000 </th> | ||
58 | +</tfoot> | ||
59 | +</table> | ||
60 | + | ||
61 | + | ||
62 | +</body> | ||
63 | +</html> |
-
Please register or login to post a comment