-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavicon.html
More file actions
46 lines (46 loc) · 704 Bytes
/
favicon.html
File metadata and controls
46 lines (46 loc) · 704 Bytes
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
<!DOCTYPE html>
<html>
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #f0f0f0;
}
.cloud {
width: 100px;
height: 60px;
background: #fff;
border-radius: 100px;
position: relative;
}
.cloud::before,
.cloud::after {
content: '';
position: absolute;
background: #fff;
border-radius: 100px;
}
.cloud::before {
width: 50px;
height: 50px;
top: -25px;
left: 10px;
}
.cloud::after {
width: 60px;
height: 40px;
top: -15px;
right: 10px;
}
</style>
</head>
<body>
<div class="cloud"></div>
<p style="position: absolute; bottom: 20px;">
Take a screenshot of the cloud and use it as favicon!
</p>
</body>
</html>