-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook_table_test.html
More file actions
45 lines (45 loc) · 1.24 KB
/
book_table_test.html
File metadata and controls
45 lines (45 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>표의 구조적인 표현</title>
</head>
<body>
<h3>표의구조적인 표현</h3>
<table border="1">
<caption>
<center>과목별 추천도서</center>
</caption>
<tbody>
<tr>
<th>과목</th>
<th>책제목</th>
<th>저자</th>
<th>출판사</th>
</tr>
<tr>
<td rowspan="3">웹프로그래밍</td>
<td>HTML5 웹프로그래밍 입문</td>
<td>임순범,박희민</td>
<td>생능</td>
</tr>
<tr>
<!-- 2행 1열 없음 -->
<td>소셜미디어 시대의 인터넷활용</td>
<td>최윤절,임순범</td>
<td>생능</td>
</tr>
<tr>
<!-- 3행 1열 없음 -->
<td>What Is HTML5?</td>
<td>B. McLaughlin</td>
<td>O'Reilly</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>합계</th>
<td colspan = "3"> 3권 </td>
</tr>
</tfoot>
</body>
</html>