-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor.html
33 lines (32 loc) · 935 Bytes
/
color.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>color in css</title>
<style>
h1{
color: red;
font-style: italic;
font-weight: 700;
text-align: center;
}
p{
color: aqua;
font-style: italic;
font-size: large;
font-weight: 600;
}
*{
background-color: rgba(165, 21, 191, 0.304);
background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQashj9RjJ7GRHE1PaUiofW4x9_NyW4PY-y2kGAB8KyJJ18Be92UggZzJ6SfIpF9driLNk&usqp=CAU);
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>
</body>
</html>