-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
25 lines (21 loc) · 897 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<svg width="200" viewBox="0 0 100 60" style="border: 3px solid red;">
<path stroke="green" stroke-width=".2" d="M20 0 V500"></path>
<path stroke="green" stroke-width=".2" d="M40 0 V100"></path>
<path stroke="green" stroke-width=".2" d="M60 0 V100"></path>
<path stroke="green" stroke-width=".2" d="M80 0 V100"></path>
<path stroke="green" stroke-width=".2" d="M0 20 H100"></path>
<path stroke="green" stroke-width=".2" d="M0 40 H100"></path>
<path stroke="green" stroke-width=".2" d="M0 60 H100"></path>
<path stroke="green" stroke-width=".2" d="M0 80 H100"></path>
<path stroke="purple" fill="orange" stroke-width="1" d="M20 20 H60 V0 L80 30 L60 60 V40 L20 40 Z"></path>
</svg>
</body>
</html>