-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha4.html
63 lines (55 loc) · 1.51 KB
/
a4.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#aa {
font-family: arial;
color: red;
background-color: yellow;
border: 3px solid green;
text-decoration: overline;
border-radius: 10px;
width: 70%;
margin: 50px auto;
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
}
#bb {
font-family: arial;
color: blue;
background-color: white;
border: 3px solid red;
text-decoration: line-through;
border-radius: 22px;
width: 50%;
margin: 80px auto;
text-align: right;
padding-top: 20px;
padding-bottom: 20px;
}
#cc {
font-family: cursive;
color: yellow;
background-color: red;
border: 3px solid blue;
text-decoration: none;
border-radius: 5px;
width: 80%;
margin: 80px auto;
text-align: right;
padding-top: 20px;
padding-bottom: 20px;
}
</style>
</head>
<body>
<h1 id="aa">Some text...</h1>
<h1 id="bb">Some more text...</h1>
<h1 id="cc">Some more more text...</h1>
</body>
</html>