-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtut14.html
More file actions
41 lines (41 loc) · 1.02 KB
/
tut14.html
File metadata and controls
41 lines (41 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Selectors</title>
<style>
/* element selector */
p{
border: 2px solid red;
}
/* id selector */
#firstPara{
color: red;
}
/* class selector */
.bgBlue{
background-color: blue;
}
/* group selector */
footer, span{
background-color: pink;
}
/* this is comment */
</style>
</head>
<body>
<h3>CSS Selectors</h3>
<p id="firstPara">This is a simple parapraph to demonstrate CSS Selectors</p>
<p id="secondPara" class="redElement bgBlue">This is a simple parapraph to demonstrate CSS Selectors</p>
<div>
<p>This is a simple parapraph to demonstrate CSS Selectors</p>
<footer>
This is footer
</footer>
<span>
This is span
</span>
</div>
</body>
</html>