-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path051_wear_a_mask.html
63 lines (63 loc) · 1.39 KB
/
051_wear_a_mask.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
<!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>Wear a Mask</title>
<style>
* {
margin: 0;
}
section{
position: relative;
width: 400px;
height: 300px;
background: #293462;
display: flex;
justify-content: center;
align-items: center;
}
div {
width: 150px;
height: 100px;
background: #FFF1C1;
border-radius: 0 0 50px 50px;
}
p {
position: absolute;
width: 250px;
height: 40px;
border: 10px solid #FFF1C1;
border-radius: 50px;
top: 100px;
}
h1 {
position: absolute;
width: 40px;
height: 10px;
background: #FE5F55;
border-radius: 5px;
top: 140px;
left: 145px
}
h1[i] {
top: 120px;
}
h1[j] {
height: 40px;
border-radius: 50%;
left: 215px
}
</style>
</head>
<body>
<section>
<p></p>
<div></div>
<h1></h1>
<h1 i></h1>
<h1 j></h1>
</section>
</body>
</html>