-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeek3.html
More file actions
234 lines (233 loc) · 6.67 KB
/
Week3.html
File metadata and controls
234 lines (233 loc) · 6.67 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Programming</title>
<style>
div > div > a {
/* 맨위 week 메뉴부분*/
text-decoration: none;
color: white;
} /* 맨위 week 메뉴부분 마우스 올렸을 때 변화*/
div > div > a:hover {
color: blue;
} /* 중간 정리표 헤드부분*/
tr > th {
text-align: center;
background-color: rgb(195, 221, 231);
}
tr > td {
/*중간 정리표 tbody열 텍스트 가운데 정렬*/
text-align: center;
}
tbody > tr:hover {
/* 중간 정리표 tbody열 마우스 올렸을 때 변화*/
background-color: blanchedalmond;
}
.Box { /* week3 div 박스 스타일 설정*/
display: block;
width: 150px;
height: 150px;
background-color: blanchedalmond;
border: 1px solid blue;
}
</style>
</head>
<body>
<h2>Web Programming</h2>
<nav>
<!--
<ul>
<li><a href="#week1">Week 1</a></li>
<li><a href="#week2">Week 2</a></li>
<li><a href="#week3">Week 3</a></li>
<li><a href="#week4">Week 4</a></li>
</ul>-->
<div style="background-color: deepskyblue">
<div style="display: inline"><a href="#week1">Week 1</a></div>
<div style="display: inline"><a href="#week2">Week 2</a></div>
<div style="display: inline"><a href="#week3">Week 3</a></div>
<div><a href="#week4">Week 4</a></div>
</div>
</nav>
<hr />
<strong>웹에 관하여</strong>
<section>
<details>
<summary>웹의 기본목적</summary>
웹의 기본 목적은 한 컴퓨터에서 만든 문서를 다른 컴퓨터에서 쉽게 볼 수
있게 하는 것이다.
</details>
<details>
<summary>왜 Why?</summary>
전 세계의 컴퓨터들을 인터넷으로 연결한 시스템을 WWW, 즉 웹이라고 부른다.
</details>
</section>
<br />
<section>
<table border="1" style="border-collapse: collapse">
<caption>
<strong>Weekly Schedule</strong>
</caption>
<thead>
<tr style="height: 30px">
<th style="width: 100px">Week</th>
<th style="width: 100px">Date</th>
<th style="width: 300px">Contents</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Sept.2</td>
<td>
<ul>
<li>강의개요</li>
<li>웹의 개념과 구조</li>
<li>Visual Studio Code</li>
</ul>
</td>
</tr>
<tr style="height: 30px">
<td>2</td>
<td>Sept.9</td>
<td>HTML Review</td>
</tr>
<tr style="height: 30px">
<td>3</td>
<td>Sept.16</td>
<td>CSS Review</td>
</tr>
<tr style="height: 30px">
<td>4</td>
<td>Sept.23</td>
<td>JavaScript</td>
</tr>
</tbody>
</table>
</section>
<ol>
<li>
<!--week 1 내용-->
<a id="week1"><strong>Week 1</strong></a>
</li>
<ul>
<li>
<a href="file:///C:/Users/babal/Downloads/Syllabus.pdf">강의 개요</a>
</li>
<li>
<a href="file:///C:/Users/babal/Downloads/webStructuer.pdf"
>웹의 개념과 구조</a
>
</li>
<li>
<a href="file:///C:/Users/babal/Downloads/VisualStudioCode%20(1).pdf">
Visual Studio Code
</a>
<section>
<ol>
<!--Visual Studio Code 안 내용-->
<li>설치</li>
<li>
유용한 plug-ins
<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>
<li>EMMET</li>
</ol>
<!--Visual Studio Code 안 내용-->
</section>
</li>
</ul>
<hr />
<section>
<li>
<!-- week2 내용-->
<a id="week2"
><strong
>Week 2:
<a href="file:///C:/Users/babal/Downloads/HTML5-Review.pdf"
>HTML Review</a
></strong
></a
>
</li>
<br />
<br />
<strong>Input Types</strong>
<br />
<br />
<u>Check Box</u>
<form>
<input type="checkbox" value="1" />HTML5
<input type="checkbox" value="2" />CSS3
<input type="checkbox" value="3" />JavaScript
</form>
<br />
<u>Radio Button</u>
<br />
<br />
<input type="radio" value="1" name="Web" />HTML5<br />
<input type="radio" value="2" name="Web" />CSS3<br />
<input type="radio" value="3" name="Web" />JavaScript<br />
<br />
<u>Combo Box</u>
<br />
<br />
<form>
<select>
<option value="1">HTML5</option>
<option value="2">CSS3</option>
<option value="3">JavaScript</option>
</select>
</form>
</section>
<hr />
<section>
<li>
<a id="week3"
><strong
>Week 3:
<a href="file:///C:/Users/babal/Downloads/CSS3-Review.pdf"
>CSS3 Review</a
></strong
></a
>
<br />
<ul>
<li>Selectors: *, tag, #id, .class, 가상클래스, attribute</li>
<li>
Properties: background-color, background, color, border-color,
font-size, text-align, text-decoration, font-family, ...
</li>
<li>
Box Model
<ul>
<li>block 요소, inline요소</li>
<li>margin, padding, border, height, width</li>
</ul>
</li>
<li>display: block, inline, inline-block</li>
<li>position: absolute, relatinve, fixed, float</li>
</ul>
<br />
<div class="Box"></div>
</li>
</section>
<br />
<hr />
<section>
<li><strong>Week 4: </strong></li>
</section>
</ol>
<hr />
<footer>Copyright © 2024 by Sung-Dong All Right Reserved</footer>
</body>
</html>