-
Notifications
You must be signed in to change notification settings - Fork 2
/
Day 6.html
72 lines (70 loc) · 1.72 KB
/
Day 6.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<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;
}
li{
list-style-position:inside;
float:right;
text-align:right;
padding:5px;
}
img{
float:right;
}
div{
padding:100px;
}
p{
text-transform:uppercase;
font-weight:bold;
box-shadow:0px 4px 20px rgb(0,0,0,0.25) ;
line-height:100px;
z-index:10%;
padding:10px;
}
a:link{
color:black;
}
a:visited{
color:white;
}
img{
z-index:100px;
}
</style>
</head>
<body >
<div>
<img width=100px src="assets/[email protected]" >
<p>
Point 1
Point 2<br>
Lorem impsum
</p>
<a href="https://www.google.com/">Link to calendar</a>
</div>
</body>
</html>