-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemo3_Colors.html
35 lines (25 loc) · 1.04 KB
/
Demo3_Colors.html
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
<!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>Demo Colors Implementation in HTML5</title>
</head>
<body>
<div style="background-color: beige;">
<p> Color Implementation With the help pf color name (140 Standard Color name)</p>
<h1 style="background-color: dimgray; border: 4px solid yellow;"> DIMGREY</style>
</h1>
<h2 style="background-color: orchid;">ORCHID</h2>
<h3 style="background-color: azure;"> AZURE</h3>
<h4 style="background-color: brown;">BROWN</h4>
</div>
<div id="SecondDiv" style="background-color: cyan ;">
<h1 style="background-color: rgb(255, 0, 100);">
</style> RGB(255,0,100) </h1>
<h2 style="background-color:ff6347;"> Color is #ff6347 </h2>
<h1 style="background-color: rgba(255, 208, 0, 0.411);"> HSL </h1>
</div>
</body>
</html>