-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 724 Bytes
/
Copy pathindex.html
File metadata and controls
36 lines (30 loc) · 724 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
<!doctype html>
<html>
<head>
<title>2D Path Constructor</title>
<style>
body {
font-family: helvetica, arial, sans-serif;
}
svg {
border: 1px solid #999;
background-color:white;
}
.test {
background-color:#ddd;
padding:10px;
margin-bottom:20px;
width:525px;
}
.error {
color: red;
}
</style>
</head>
<body>
<h1>A 2D SVG "Path" constructor</h1>
<h2>Tests below:</h2>
</body>
<script src="path.js"></script>
<script src="tests.js"></script>
</html>