-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·20 lines (19 loc) · 970 Bytes
/
index.html
File metadata and controls
executable file
·20 lines (19 loc) · 970 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html>
<head>
<meta charset="UTF-8">
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<!-- uncomment lines below to include extra p5 libraries -->
<script language="javascript" src="libraries/p5.dom.js"></script>
<!--<script language="javascript" src="libraries/p5.sound.js"></script>-->
<script language="javascript" type="text/javascript" src="ameba.js"></script>
<script language="javascript" type="text/javascript" src="food.js"></script>
<script language="javascript" type="text/javascript" src="predator.js"></script>
<script language="javascript" type="text/javascript" src="game.js"></script>
<script language="javascript" type="text/javascript" src="sketch.js"></script>
<!-- this line removes any default padding and style. you might only need one of these values set. -->
<style> body {padding: 0; margin: 0;} </style>
</head>
<body>
<h1>AMEBA Survival with Genetic Algorithm</h1>
</body>
</html>