-
Notifications
You must be signed in to change notification settings - Fork 0
/
deco.html
45 lines (43 loc) · 1021 Bytes
/
deco.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
margin: 30px;
}
.underline {
text-decoration: underline;
}
.overline {
text-decoration: overline;
}
.linethroght {
text-decoration: line-through;
}
a {
text-decoration: none;
}
a:visited {
color: red;
}
.letter {
letter-spacing: 1em;
}
.word {
word-spacing: 10px;
}
</style>
</head>
<body>
<h1>CSS Text Deco</h1>
<div class="underline">UnderLine</div>
<div class="overline">OverLine</div>
<div class="linethroght">Line Throght</div>
<a href="http://www.naver.com">네이버로 가기</a>
<div class="letter">I am a boy</div>
<div class="word">I am a boy</div>
</body>
</html>