-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path04_simple selector.html
More file actions
83 lines (64 loc) · 2.01 KB
/
04_simple selector.html
File metadata and controls
83 lines (64 loc) · 2.01 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
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple selector</title>
<link rel="stylesheet" href="style04.css">
</head>
<body>
<!-- Tag selector -->
<!-- <p>Hello Archana</p>
<p>Hello Priyanka</p>
<p>Hello Sushil</p>
<p id="id1">Hello Nirupamma</p> -->
<!-- <h1>Hii this is Archana</h1> -->
<!-- id selector -->
<!-- <p class="c1">Hello Archana</p>
<p class="c1">Hello Priyanka</p>
<p>Hello Sushil</p>
<p class="c1">Hello Nirupamma</p>
<p>Hello Scoot</p> -->
<!-- class selector -->
<!-- <p class="c1">Hello Archana</p>
<p class="c1">Hello Priyanka</p>
<p>Hello Sushil</p>
<p class="c1">Hello Nirupamma</p>
<p>Hello Scoot</p> -->
<!-- <h1 class="c1">This is class selector</h1>
<h2 class="c1">Here This is good</h2> -->
<!-- attribute selector -->
<!-- if the input box type is text then apply teal color border -->
<!-- <h2>Registration form</h2>
First name: <input type="text"><br><br>
Last name: <input type="text"><br><br>
email: <input type="email"><br><br>
address: <input type="text"><br><br>
<input type="submit"> -->
<!-- grouping selector -->
<!-- <div class="c1">
<h3>Hello This is Archana</h3>
</div>
<h1>This is Priyanka</h1>
<p class="c1"> Here This is good as well</p> -->
<!-- <div>
<h3>Hello This is Archana</h3>
</div>
<h1>This is Priyanka</h1>
<p> Here This is good as well</p> -->
<!-- universal selector -->
<!-- <div>
<p>This is good</p>
<p>This is average</p>
<p>This is well</p>
<p>This is so cool</p>
</div> -->
<div>
<p>This is good</p>
<p>This is average</p>
<h1>So cool cool cool</h1>
<h3>Much more cool cool cool</h3>
<a href="#">Google</a>
</div>
</body>
</html>