-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpseudo.html
84 lines (71 loc) · 1.85 KB
/
pseudo.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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>
h1:hover {
color: skyblue;
background-color: seagreen;
font-weight: 700;
}
.middle-person:focus {
color: blue;
font-weight: 700;
}
a:visited {
color: red;
}
li:first-child {
color: chocolate;
}
li:last-child {
background-color: cornflowerblue;
}
li:nth-child(2n) {
color: crimson;
}
li:nth-child(2n+1) {
background-color: darkgray;
}
h3::before {
content: 'Hello ';
}
.special::after {
content: ' gello';
background-color: darkkhaki;
font-size: 12px;
}
</style>
</head>
<body>
<h1>This is normal</h1>
<input type="text">
<input class="middle-person" type="text">
<input type="text">
<br>
<a href="https://www.google.com/">google e jao</a>
<a href="https://www.underconsideration.com/brandnew/">never visited</a>
<a href="https://web.programming-hero.com/">programming hero te jao</a>
<br>
<h3>middle size header -1</h3>
<h3 class="special">middle size header -2</h3>
<h3>middle size header -3</h3>
<h3 class="special">middle size header -4</h3>
<h3 class="special">middle size header -5</h3>
<h3>middle size header -6</h3>
<ul>
<li>Alia</li>
<li>Dalia</li>
<li>Kalia</li>
<li>Calia</li>
<li>Jalai</li>
<li>Charaia</li>
<li>maria</li>
<li>faria</li>
<li>jaria</li>
</ul>
</body>
</html>