-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.html
More file actions
43 lines (42 loc) · 1.09 KB
/
css.html
File metadata and controls
43 lines (42 loc) · 1.09 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
<!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>
<style>
.text-decoration-none {
text-decoration: none;
}
#dark {
background-color: dark;
}
.green{
color:green;
}
.blue{
color:blue;
}
</style>
<body>
<h1>제목</h1>
<p>안녕하세요! 행복한 하루를 살아가는 수의사 전한준입니다.</p>
<hr />
<a class="text-decoration-none" href="http://www.naver.com">네이버</a>
<span>이름 :</span><span>코딩벳</span>
<ul>
<li>사과</li>
<li>바나나</li>
<li>토마토</li>
<li>오이</li>
</ul>
<hr />
<p id="dark">
<span class="green">동해물과</span> <span class="blue">백두산이 </span>말으고 달토록<br />
하나님이 보호하사 우리 대한 만세<br />
남산 우헤 저 소나무 철갑을 두른 듯<br />
바람이슬 불변함은 우리 긔상일세<br />
</p>
</body>
</html>