-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolor.html
More file actions
22 lines (14 loc) · 843 Bytes
/
Copy pathcolor.html
File metadata and controls
22 lines (14 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html">
<head>
<title>this is my first website</title>
</head>
<!--span=add makeup to text or a portion of a document -->>
<!--div=difines a division of document-->>
<body style="background-color: black;">
<h1 style="color: red;">HELLO</h1> <!--in this we can just write the color-->>
<h1 style="color: rgb(26, 143, 94)">HELLO</h1><!--in this we will use the RGB color code from hex color picker-->>
<h1 style="color: #291e63;">HELLO</h1><!--in this we will use the hexa color code from hex color picker-->>
<p style="background-color: red; color: rgb(26, 143, 94);">Lorem ipsum dolor sit amet consectetur adipisicing elit. Aperiam quod hic voluptates ratione aliquid! Rerum explicabo harum error et, temporibus dignissimos vero totam veritatis ut non saepe corporis qui officia.</p>
</body>
</html>