-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (20 loc) · 893 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pixel Painter</title>
<link rel="stylesheet" href="index.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js'></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/addons/p5.sound.min.js"></script>
<script src="./js/settings.js"></script>
<script src="./js/colorPicker.js"></script>
<script src="./js/pixel.js"></script>
<script src="./js/grid.js"></script>
<script src="./js/index.js"></script>
<script data-ad-client="ca-pub-5810031288004664" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
</head>
<body>
</body>
</html>