-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweek2_1.html
59 lines (56 loc) · 1.15 KB
/
week2_1.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Week2</title>
</head>
<body>
<h1>Web Programming</h1>
<ol>
<li><a href="#Week1">Week1</a></li>
<li><a href="#Week2">Week2</a></li>
<li><a href="#Week3">Week3</a></li>
</ol>
<hr />
<hr />
<b>웹에 관하여</b><br /><br />
<details>
<summary>웹의 기본 목적</summary>
웹의 기본 목적은 ~~~
</details>
<br />
<details>
<summary>왜 why?</summary>
전 세계의 컴퓨터들을 ~~~
</details>
<br /><br />
<table border="1">
<thead>
<th>Week</th>
<th>Date</th>
<th>Contents</th>
</thead>
<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>