-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
23 lines (22 loc) · 928 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>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.5.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.5.0/addons/p5.sound.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=VT323&display=swap" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<meta charset="utf-8" />
</head>
<body>
<main></main>
<script src="js/input.js"></script>
<script src="js/page.js"></script>
<script src="js/page_types/info.js"></script>
<script src="js/page_types/choice.js"></script>
<script src="js/page_manager.js"></script>
<script src="js/state.js"></script>
<script src="js/sketch.js"></script>
</body>
</html>