-
Notifications
You must be signed in to change notification settings - Fork 0
/
insta_log.html
40 lines (40 loc) · 1.01 KB
/
insta_log.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
<html>
<head>
<title>Insta Logo</title>
<style>
.contain{
position: relative;
left: 20%;
top: 20%;
border: 15px solid black;
height: 300px;
width: 300px;
border-radius: 25%;
}
.circle{
height: 150px;
width: 150px;
border: 20px solid black;
border-radius: 50%;
position: absolute;
top: 55px;
left: 55px;
}
.dot{
background-color: black;
height: 50px;
width: 50px;
border-radius: 100%;
position: absolute;
right: 10%;
top: 15px;
}
</style>
</head>
<body>
<div class="contain">
<div class="dot"></div>
<div class="circle"></div>
</div>
</body>
</html>