-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpseudo.html
104 lines (80 loc) · 2.14 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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>Pseudo Box</title>
<style>
h1 {
color: black;
background-color: orange;
}
h1:hover {
color: orangered;
background-color: rgb(27, 25, 25);
transition-duration: .5s;
font-size: 3em;
}
.middle-person:focus {
color: orangered;
padding: 10px 20px;
font-weight: 900;
font-size: 20px;
border: 2px solid orangered;
transition-duration: 5s;
transition-delay: .1s;
}
a:visited {
color: red;
}
li:first-child {
color: crimson;
}
li:last-child {
background-color: cyan;
}
li:nth-child(2n) {
color: darkorange
}
li:nth-child(2n+1) {
font-size: 40px;
}
h3::before {
content: 'hello: this is the before element, ';
background-color: orange;
}
h3::after {
content: ' this is the after element.';
background-color: dimgray;
}
</style>
</head>
<body>
<h1>This is very normal</h1>
<input type="text">
<input placeholder="Write your secret topic" class="middle-person" type="text">
<input type="text">
<br><br>
<a href="https://www.google.com/">go to google</a>
<a href="https://www.youtube.com/">go to youtube</a>
<a href="https://www.adcombo.com/">go to adcombo</a>
<br><br><br>
<ul>
<li>Home</li>
<li>Menu</li>
<li>Blog</li>
<li>Aqure</li>
<li>About</li>
<li>Details</li>
</ul>
<br><br><br>
<h3>big boss masul bulder,,</h3>
<h3>big boss masul bulder,,</h3>
<h3>big boss masul bulder,,</h3>
<h3>big boss masul bulder,,</h3>
<h3>big boss masul bulder,,</h3>
<h3>big boss masul bulder,,</h3>
<br><br><br>
</body>
</html>