-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1-2.html
More file actions
36 lines (33 loc) · 891 Bytes
/
1-2.html
File metadata and controls
36 lines (33 loc) · 891 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS를 배워봅시다.</title>
<style>
h1 {
color: yellowgreen;
}
.paragraph {
color: red;
font-weight: bold;
}
#apple {
background-color: thistle;
}
</style>
</head>
<body>
<h1>저는 제목을 나타내는 태그입니다.</h1>
<p class="paragraph">저는 하나의 문단을 나타냅니다.</p>
<br>
<hr>
<a href="http://naver.com/"> 하이퍼링크 </a>
<ul>
<li id="apple">사과</li>
<li>딸기</li>
<li>바나나</li>
</ul>
<div>span 태그는 특정 <span style="color:red">글자</span>를 꾸밀 때 써요</div>
</body>
</html>