-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02_半月.html
More file actions
44 lines (29 loc) · 697 Bytes
/
02_半月.html
File metadata and controls
44 lines (29 loc) · 697 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"content="width=device-width,
initial-scale=1.0">
<title>Half Moon</title>
<style>
*{
margin: 0;
padding: 0;
background-color: black;
}
div{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 100px;
width: 100px;
box-shadow: -15px 15px 0 5px white ;
border-radius: 50%;
}
</style>
</head>
<body>
<div></div>
</body>
</html>