-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpseudo-element.html
More file actions
79 lines (60 loc) · 1.87 KB
/
pseudo-element.html
File metadata and controls
79 lines (60 loc) · 1.87 KB
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
<!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 Element in html</title>
<style>
h1::before {
content: "hello ";
color: aquamarine;
}
h1::after {
content: " mello";
color: red;
}
.section-title {
display: inline-block;
}
.section-title::after,
.section-title:hover:before {
content: '';
display: block;
background-color: magenta;
height: 2px;
width: 100%;
}
blockquote::before {
content: open-quote;
color: magenta;
font-size: 1.5em;
}
blockquote::after {
content: close-quote;
color: magenta;
font-size: 1.5em;
}
span::after {
content: '*';
}
</style>
</head>
<body>
<h1>Having fun with pseudo</h1>
<h1>Having fun with Pseudo class in css</h1>
<section>
<h2 class="section-title">Best Quotes:</h2>
<blockquote>Patience, persistence and perspiration make an unbeatable combination for success</blockquote>
<blockquote>Desire is the starting point of all achievement, not a hope, not a wish, but a keen pulsating desire which transcends everything.</blockquote>
<blockquote>Strength and growth come only through continuous effort and struggle…</blockquote>
</section>
<!-- direct asterik added -->
<section>
<!-- <p>Name* <input type="text" placeholder="Your name"></p> -->
</section>
<section>
<p><span>Name:</span><input type="text" placeholder="Input Your Name Here"></p>
</section>
</body>
</html>