hextris/index.html

21 lines
317 B
HTML
Raw Normal View History

2014-05-17 14:15:59 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Wasted Time</title>
2014-05-17 15:22:26 +00:00
<style>
#canvas {
width: 1200px;
height: 700px;
}
</style>
2014-05-17 14:15:59 +00:00
</head>
<body>
2014-05-17 14:43:16 +00:00
<center>
2014-05-17 15:22:26 +00:00
<canvas id="canvas"></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>