-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
25 lines (22 loc) · 816 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 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>String Knitting Art</title>
<link rel="stylesheet" href="./src/style.css" />
</head>
<body>
<h1>String Knitting Art</h1>
<div id="container">
<div id="plate"></div>
<canvas id="canvas" width="600" height="600"></canvas>
</div>
<!-- <script src="./node_modules/svg.js/dist/svg.js"></script> -->
<script src="https://unpkg.com/svg.js/dist/svg.js"></script>
<!-- <script src="./node_modules/zepto/dist/zepto.js"></script> -->
<script src="https://unpkg.com/zepto/dist/zepto.js"></script>
<script src="./src/index.js"></script>
</body>
</html>