-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (25 loc) · 872 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
26
27
28
<!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>Hexapawn</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>Hexapawn</header>
<div id="canvas"></div>
<script src="js/p5/p5.js"></script>
<script src="js/p5/p5-dom.js"></script>
<script src="js/p5/p5-sound.js"></script>
<script src="js/button.js"></script>
<script src="js/turn.js"></script>
<script src="js/pointer.js"></script>
<script src="js/pawn.js"></script>
<script src="js/grid.js"></script>
<script src="js/brain.js"></script>
<script src="js/sketch.js"></script>
</body>
</html>