-
Notifications
You must be signed in to change notification settings - Fork 0
/
linescss.html
39 lines (34 loc) · 896 Bytes
/
linescss.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
<!DOCTYPE html>
<html>
<head>
<style>
h1{
text-decoration:overline;
text-decoration-color:red;
text-transform:uppercase;
text-shadow: 5px 3px red;
}
h2{
text-decoration:underline;
text-decoration-color:blue;
text-transform:lowercase;
}
h3{
text-decoration:Line-through;
text-decoration-color:pink;
text-transform:capitalize;
}
p.ex2{
text-decoration:overline underline;
text-decoration-color:brown;
text-shadow:1px 1px 2px #000000, 0px 0px 25px blue, 0px 0px 15px purple ;
}
</style>
</head>
<body>
<h1>This is overline</h1>
<h2>This is underline</h2>
<h3>This is line --through</h2>
<p class= "ex2">This is overline and underline</p>
</body>
</html>