hextris/index.html
2014-05-17 17:37:52 -04:00

19 lines
690 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Wasted Time</title>
</head>
<body style="background-color:#2c3e50">
<center>
<div style='z-index:2;position:absolute;left:50%;margin-left:-70px;top:0px;'><h1 style='color:#ecf0f1;font-size:50px;'>Hextris</h1></div>
<canvas id="canvas" width = '700' height = '700' style='background-color:#2c3e50; position:absolute; margin-top:70px;left:50%;margin-left:-350px;'></canvas>
</center>
<script src="math.js"></script>
<script src="entities.js"></script>
<script src="math.js"></script>
<script src="keypress.min.js"></script>
<script src="input.js"></script>
<script src="checking.js"></script>
<script src="main.js"></script>
</body>
</html>