-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path05.html
47 lines (41 loc) · 860 Bytes
/
05.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>셀렉터</title>
<style>
h3, strong, em {
color: green;
}
div strong {
color: red;
}
div > strong {
color: blue;
}
#center {
text-align: center;
}
.indent {
text-indent: 3em;
}
body.main {
background: powderblue;
}
#center strong {
background: yellow;
}
</style>
</head>
<body class="main">
<h3>얼굴</h3>
<hr>
<div id="center"><strong>박인희</strong></div>
<div class="indent">
<p><em>길</em>을 걷고 산들 무엇하리
<strong>꽃</strong>이 내가 아니듯
내가 <strong>꽃</strong>이
될 수 없는 지금...</p>
</div>
</body>
</html>