mirror of
https://github.com/miky-kr5/CEIDEC-Pong-Web.git
synced 2023-01-29 18:47:06 +00:00
14 lines
309 B
HTML
14 lines
309 B
HTML
<!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>
|