-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDay 5.html
43 lines (42 loc) · 1.18 KB
/
Day 5.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
36
37
38
39
40
41
42
43
<html>
<head>
<title>Day 5</title>
<link src="./assets/Poppins-Regular.woff2">
<style>
body{
background-image:linear-gradient(to bottom right,pink,blue) !important;
font-family: 'Poppins', sans-serif;
}
.redcolour{
color: red;
font-size:10px;
}
h1{
font-size:60px;
border: 2px solid blue;
}
img{
border-radius:50%;
}
h2{
padding: 10px;
font-size:20px;
}
#uniqueh2{
color:aliceblue;
}
</style>
</head>
<body >
<div class="redcolour">
<h1 style="color:yellow;">Welcome to CSS</h1>
<h2>Add colour to Me</h2>
<h2>hello I am a dog</h2>
<h2 id="uniqueh2">Add colour to Me!!!!!</h2>
<h2>hello I am a dog</h2>
<h2>Add colour to Me</h2>
<h2>hello I am a dog</h2>
<img src="https://post.medicalnewstoday.com/wp-content/uploads/sites/3/2020/02/322868_1100-800x825.jpg">
</div>
</body>
</html>