-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex19+.html
More file actions
37 lines (37 loc) · 806 Bytes
/
Copy pathindex19+.html
File metadata and controls
37 lines (37 loc) · 806 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Color</title>
<style>
h1{
color: red;
}
p{
/* color: #c91db2; */
/* color: rgb(70, 23, 224); */
color: hsl(235, 87%, 42%);
}
li{
color: rgba(74, 19, 195, 0.615);
}
body{
background-color: yellowgreen;
}
</style>
</head>
<body>
<h1>Lets learn colors</h1>
<p>
Colors can be represented in:
<ol>
<li>Color Keywords</li>
<li>Hex Color Codes</li>
<li>RGB</li>
<li>RGBA</li>
<li>HSL</li>
</ol>
</p>
</body>
</html>