-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss_colours_1.html
More file actions
85 lines (85 loc) · 3.85 KB
/
css_colours_1.html
File metadata and controls
85 lines (85 loc) · 3.85 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
84
85
<!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 Colours | 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;
line-height: 1.2;
background: black; /* background is shortcut for background-color */
color: white;
font-family: Arial;
}
p
{
color: gold;
}
h1
{
font-size: 40px;
text-decoration: underline;
}
h2
{
font-size: 30px;
text-decoration: underline;
color: rgb(168, 92, 255);
}
.green_class
{
color: rgb(0, 255, 0);
}
.italic_class
{
font-style: italic;
}
.highlight
{
font-weight: 600;
background-color: rgb(99, 99, 99);
}
</style>
</head>
<body>
<header>
</header>
<main>
<h1>CSS Selectors</h1><br>
<section>
<h2>Section 1</h2><br>
<p class="green_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="italic_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>
<span class="highlight">This is a section of the CSS selectors file.</span> 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>
</main>
<footer>
</footer>
</body>
</html>