-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask5.html
More file actions
52 lines (50 loc) · 1.09 KB
/
Copy pathtask5.html
File metadata and controls
52 lines (50 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>task5</title>
<style>
.box{
display: flex;
justify-content: center;
align-items: center;
height: 1000px;
margin: auto;
}
.one{
width: 800px;
height: 400px;
background-color: #ccc;
position: absolute;
}
.two{
width: 100px;
height: 100px;
border-radius: 0 0 100px 0;
background-color: #fc0;
position: absolute;
top: 0;
left: 0;
}
.three{
width: 100px;
height: 100px;
border-radius: 100px 0 0 0;
background-color: #fc0;
position: absolute;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
<div class="box">
<div class="one">
<div class="two"></div>
<div class="three"></div>
</div>
</div>
</body>
</html>