-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBattle #4
48 lines (48 loc) · 885 Bytes
/
Battle #4
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
<!--#4 challenge completed ups n down-->
<!DOCTYPE html>
<html>
<head>
<style>
body{
background:#62306D;
}
#leftdown {
width:100px;
height:100px;
margin:142px;
margin-left:45px;
border-bottom-left-radius:57%;
border-bottom-right-radius:57%;
background:#F7EC7D;
position:absolute;
}
#midup {
width:100px;
height:100px;
margin:42px;
border-top-left-radius:57%;
border-top-right-radius:57%;
margin-left:145px;
background:#F7EC7D;
position:absolute;
}
#rightdown {
width:97px;
height:100px;
margin:142px;
margin-left:245px;
border-bottom-left-radius:52%;
border-bottom-right-radius:52%;
background:#F7EC7D;
position:absolute;
}
</style>
</head>
<body>
<div id="container">
<div id="leftdown"></div>
<div id="midup"></div>
<div id="rightdown"></div>
</div>
</body>
</html>