-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex04-09.html
33 lines (33 loc) · 1002 Bytes
/
ex04-09.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>셀렉터 만들기</title>
<style>
h3, li {color : brown;}
div > div > strong {background : yellow;}
ul strong {color : dodgerblue;}
.warning {color : red;}
body.main {background : aliceblue;}
#list {background : mistyrose;}
#list span {color : forestgreen;}
h3:first-letter {color : red;}
li:hover {background : yellowgreen;}
</style>
</head>
<body class="main">
<h3>Web Programming</h3>
<hr>
<div>
<div>2학기 <strong>학습 내용</strong>입니다.</div>
<ul id="list">
<li><span>HTML5</span></li>
<li><strong>CSS</strong></li>
<li>JAVASCRIPT</li>
</ul>
<div class="warning">60점 이하는 F</div>
</div>
</body>
</html>