-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (20 loc) · 749 Bytes
/
Copy pathindex.html
File metadata and controls
23 lines (20 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<title>Hello World!</title>
<!-- Import style -->
<link rel="stylesheet" href="style.css">
<!-- Import Paper.js -->
<script src="node_modules/paper/dist/paper-core.min.js"></script>
</head>
<body>
<!-- This this the canvas element on which we will draw with Paper.js -->
<canvas></canvas>
<!-- You can also require other files to run in this process -->
<script src="./renderer.js"></script>
</body>
</html>