hextris/index.html

15 lines
306 B
HTML
Raw Normal View History

2014-05-17 14:15:59 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Wasted Time</title>
</head>
<body>
2014-05-17 14:43:16 +00:00
<center>
<canvas id="canvas" style = 'width:1200px;height:700px;background-color:yellow;'></canvas>
2014-05-17 14:43:16 +00:00
</center>
2014-05-17 15:03:11 +00:00
2014-05-17 14:43:16 +00:00
<script src="entities.js"></script>
<script src="main.js"></script>
2014-05-17 15:03:11 +00:00
<script src="math.js"></script>
2014-05-17 14:15:59 +00:00
</body>
</html>