-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_selectors_2.html
More file actions
55 lines (55 loc) · 3.29 KB
/
css_selectors_2.html
File metadata and controls
55 lines (55 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible", content="IE-edge">
<title>CSS Selectors Compressed | Vijay CSS</title>
<link rel="stylesheet", href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css"> <!--Import more fonts from font-awesome-->
<style>
body {font-size: 20px; font-family: Arial;}
h1 {color: black; font-size: 40px; text-decoration: underline;}
h2 {color: rgb(77, 0, 77); font-size: 30px; text-decoration: underline;}
.pink_class {color: pink}
.blue_class {color: blue}
.italic_red_class {color: red; font-style: italic;}
</style>
</head>
<body>
<header>
</header>
<main>
<h1>CSS Selectors</h1><br>
<section>
<h2>Section 1</h2><br>
<p class="pink_class">
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
</p>
</section><br>
<section>
<h2>Section 2</h2><br>
<p class="blue_class">
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
</p>
</section><br>
<section>
<h2>Section 3</h2><br>
<p class="italic_red_class">
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
This is a section of the CSS selectors file. This is a section of the CSS selectors file. This is a section of the CSS selectors file.
</p>
</section>
</main>
<footer>
</footer>
</body>
</html>