-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemocss1.html
More file actions
52 lines (43 loc) · 1.09 KB
/
Copy pathdemocss1.html
File metadata and controls
52 lines (43 loc) · 1.09 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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- External CSS Link -->
<link rel="stylesheet" href="style.css">
<!--Internal CSS Style -->
<style>
/* Tag Based Style */
h1 {
color: hsla(305, 100%, 50%, 0.685);
}
/* id based */
/* #heading,
#sumit,
.bg-orange {
color: yellowgreen;
} */
/* class based */
.head {
color: crimson;
}
.bg-orange {
background-color: coral;
}
.text-white {
color: white;
}
.sumit-red-1 {
color: hsla(0, 100%, 50%, 0.685);
}
</style>
</head>
<!-- Inline CSS style -->
<body style="">
<h1 class="head bg-orange text-white">Test</h1>
<h1 id="heading">Test</h1>
<h1 id="sumit" class="sumit-red-1">Test</h1>
</body>
</html>