-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
33 lines (30 loc) · 1.19 KB
/
test.html
File metadata and controls
33 lines (30 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body style="margin: 0;">
<svg viewBox="-500 -500 1000 1000" style="width: 100vw; height: 100vh;">
<circle cx="0" cy="0" r="300" fill="none" stroke="black"></circle>
<circle cx="0" cy="0" r="22" fill="black" stroke="black"></circle>
<g>
<!-- <line x1="0" y1="-315" x2="0" y2="-470" stroke="black" fill="none"></line>
<circle r="15" cx="0" cy="-300" stroke="black" fill="none"></circle> -->
<path d="M -3 0
A 20 200 0 0 1 -5 -200
A 3 99 0 0 0 -5 -250
L 5 -250
A 3 99 0 0 0 5 -200
A 20 200 0 0 1 5 0" fill="none" stroke="black"></path>
<path d="M -12 -255
A 22 22 0 1 0 12 -255
A 13 50 0 0 1 3 -300
L -3 -300
A 13 50 0 0 1 -12 -255 z" data-swatch="fill" storke="none"></path>
</g>
</svg>
</body>
</html>