-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek2.html
More file actions
107 lines (106 loc) · 3.04 KB
/
Week2.html
File metadata and controls
107 lines (106 loc) · 3.04 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</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>
<h3>웹에 관하여</h3>
<details>
<summary>웹의 기본 목적</summary>
웹의 기본 목적은 한 컴퓨터에서 만든 문서를 다른 컴퓨터에서 쉽게 볼 수 있게 하는 것이다.
</details>
<details>
<summary>왜 Why?</summary>
전 세계의 컴퓨터들을 인터넷으로 연결한 시스템을 WWW, 즉 웹이라고 부른다.
</details>
<br>
<table border="">
<caption>Weekly Schedule</caption>
<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>
<hr>
<ol>
<li><b>Week 1</b></li>
<ul>
<li><a href="">강의개요</a></li>
<li><a href="">웹의 개념과 구조</a></li>
<li><a href="">Visual Studio Code</a></li>
<ol>
<li>설치</li>
<li>유용한 plug-ins</li>
<ul>
<li>Material Theme</li>
<li>Prettier</li>
<li>indent-rainbow</li>
<li>Auto Rename Tag</li>
<li>HTML CSS Support</li>
<li>Live Server</li>
</ul>
<li>EMMET</li>
</ol>
</ul>
<hr>
<li><b>Week2: HTML Review</b></li>
<br>
<b>Input Types</b>
<br> <br>
<u>Check Box</u>
<br> <br>
<input type="checkbox"> HTML 5
<input type="checkbox"> CSS 3
<input type="checkbox"> JavaScript
<br> <br>
<u>Radio Button</u>
<br> <br>
<input type="radio" name="option" value="1"> HTML 5
<input type="radio" name="option" value="2"> CSS 3
<input type="radio" name="option" value="3"> JavaScript
<br> <br>
<u>Combo Box</u>
<br> <br>
<select>
<option>HTML 5</option>
<option>CSS 3</option>
<option>JavaScript</option>
</select>
<br>
<hr>
<li><b>Week 3: CSS Review</b></li>
</ol>
</body>
</html>