-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek2.html
More file actions
70 lines (67 loc) · 1.76 KB
/
Week2.html
File metadata and controls
70 lines (67 loc) · 1.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Web Programming</title>
<style>
table {
border-collapse: collapse;
width: 50%;
}
table, th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
ul {
list-style-type: disc;
}
</style>
</head>
<body>
<h1>Web Programming</h1>
<ul>
<li><a href="#">Week 1</a></li>
<li><a href="#">Week 2</a></li>
<li><a href="#">Week 3</a></li>
</ul>
<hr><hr>
<h2>웹에 관하여</h2>
<p><strong>▼웹의 기본 목적</strong></p>
<p>웹의 기본 목적은 한 컴퓨터에서 만든 문서를 다른 컴퓨터에서 쉽게 볼 수 있게 하는 것이다.</p>
<p><strong>▼왜 Why?</strong></p>
<p>전 세계의 컴퓨터들을 인터넷으로 연결한 시스템을 WWW, 즉 웹이라고 부른다.</p>
<h3>Weekly Schedule</h3>
<table>
<tr>
<th>Week</th>
<th>Date</th>
<th>Contents</th>
</tr>
<tr>
<td>1</td>
<td>Sept. 2</td>
<td>
<ul>
<li>강의개요</li>
<li>웹의 개념과 구조</li>
<li>Visual Studio Code</li>
</ul>
</td>
</tr>
<tr>
<td>2</td>
<td>Sept. 9</td>
<td>HTML Review</td>
</tr>
<tr>
<td>3</td>
<td>Sept. 16</td>
<td>CSS Review</td>
</tr>
</table>
</body>
</html>