-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcss_prop.html
More file actions
52 lines (36 loc) · 1.13 KB
/
css_prop.html
File metadata and controls
52 lines (36 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS PROPERTY BY CLASS - ID</title>
<style>
.c1{
color:red;
font-size: 15px;
}
#one{
font-size: 20px;
color: blue;
}
#two{
font-size: 25px;
color: brown;
}
#three{
font-size: 14px;
color: orange;
}
</style>
</head>
<body>
<p class="c1">Hello Welcome to CSS class of May 23 2022</p>
<p class="c1">Welcome to HTML 5 !</p>
<p>This is very awesome!</p>
<h1 class="c1">Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste voluptatem alias mollitia soluta, unde aliquid non reiciendis sunt pariatur quia nesciunt consectetur adipisci reprehenderit repudiandae quo. Natus at sit inventore.</h1>
<p id="one">This is first Paragraph</p>
<p id="two">This is second Paragraph</p>
<p id="three">This is Third Paragraph</p>
</body>
</html>