-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask_2.html
22 lines (18 loc) · 896 Bytes
/
task_2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html lang="en"><head><base target="_blank">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<hr height="25px" color="orange">
<h1 style="text-align:center">CSS Color/Background-color</h1>
<hr height="25px" color="orange">
<h1 style="color:slateblue;background-color:Tomato;">Tomato</h1>
<h1 style="background-color:#ffa500;">Orange</h1>
<h1 style="background-color:hsl(210, 100%, 56%);color:rgb(206, 243, 220)">DodgerBlue</h1>
<h1 style="background-color:rgb(61, 181, 115);color:rgb(230, 49, 25)">MediumSeaGreen</h1>
<h1 style="background-color:Gray;">Gray</h1>
<h1 style="background-color:SlateBlue;">SlateBlue</h1>
<h1 style="background-color:Violet;color:rgb(25,140,230);">Violet</h1>
<h1 style="background-color:#d3d3d3;color: #df0fdd">LightGray</h1>
</body></html>