-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 734 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 734 Bytes
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
<html>
<head>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div>
<div class="ribbon">
<a href="https://github.com/Krystex/Boids">Fork me on GitHub</a>
</div>
<h2>Boids</h2>
<div>
Boids: <input title="Number of boids" value="40" id="numboidsinput"/>
Predators: <input title="Number of predators" value="2" id="numpredatorsinput"/>
<br />
<button id="tickbutton">Tick</button>
<button id="runbutton">Run</button>
</div>
<div class="main-container">
<canvas id="canvas" width="400px" height="400px"></canvas>
</div>
</div>
</body>
<script src="ecs.js"></script>
<script src="main.js"></script>
</html>