Files
CEIDEC-Pong-Web/index.html

14 lines
309 B
HTML
Raw Normal View History

2018-10-29 04:36:23 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>CEIDEC-Pong on the Web!</title>
<style>* { padding: 0; margin: 0; }</style>
<script src="js/phaser.min.js"></script>
<script src="js/game.js"></script>
</head>
<body>
<div id="game_container"></div>
</body>
</html>