-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram3.html
More file actions
33 lines (31 loc) · 918 Bytes
/
Program3.html
File metadata and controls
33 lines (31 loc) · 918 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {background-color: black;}
h1{ color:greenyellow;
text-align: center;}
p { color:azure;
font-family: Verdana;
font-size: 20px;}
.center{ color: aquamarine;
font-style: italic;
font-size: 20px;}
</style>
<title >Class</title>
</head>
<body>
<main>
<h1>Class Selectors</h1>
<p> This area describes the normal styling css.</p>
</main>
<footer>
<div class="container " style="background-color: white;" >
<h1> Container No.1 with CSS</h1>
<p class="center">
Here are the some examples of the different uses of different css selectors in many ways .
</p>
</div>
</footer>
</body>
</html>