-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
64 lines (64 loc) · 1.78 KB
/
table.html
File metadata and controls
64 lines (64 loc) · 1.78 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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
table, th, td{
border: 1px solid black;
}
</style>
</head>
<body>
<table width="100%">
<caption>시간표</caption>
<tr>
<th></th>
<th>월</th>
<th>화</th>
<th>수</th>
<th>목</th>
<th>금</th>
<th>토</th>
</tr>
<tr>
<th>1교시 (9:10-10:00)</th>
<th rowspan="2">English for Global Citizens Ⅲ</th>
<th rowspan="2">웹프로그래밍</th>
<th rowspan="2">객체지향프로그래밍</th>
<th rowspan="4">네트워크보안</th>
</tr>
<tr>
<th>2교시 (10:10-11:00)</th>
<tr>
<th>3교시 (11:10-12:00)</th>
<th rowspan="2">대중문화속의법률이야기</th>
<th rowspan="2">보안자료구조</th>
<th rowspan="2">서버구축및운영실습</th>
</tr>
<tr>
<th>4교시 (12:10-13:00)</th>
</tr>
<tr>
<th>5교시 (13:10-14:00)</th>
</tr>
<tr>
<th>6교시 (14:10-15:00)</th>
<th rowspan="2">웹프로그래밍</th>
<th rowspan="2">객체지향프로그래밍</th>
</tr>
<tr>
<th>7교시 (15:10-16:00)</th>
</tr>
<tr>
<th>8교시 (16:10-17:00)</th>
<th rowspan="2">보안자료구조</th>
<th rowspan="2">서버구축및운영실습</th>
</tr>
<tr>
<th>9교시 (17:10-18:00)</th>
</tr>
</table>
</body>
</html>