Files
Examples/JavaScript/dino-game/index.html
2018-07-16 11:18:23 +01:00

24 lines
850 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dino Game</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
</head>
<body>
<canvas id="canv" width="800" height="400" onkeypress="onKeyPressed(event)"></canvas>
<script src="player.js"></script>
<script src="world.js"></script>
<script src="cacti.js"></script>
<script src="flyer.js"></script>
<script src="enemys.js"></script>
<script src="clouds.js"></script>
<script src="ground.js"></script>
<script src="colision.js"></script>
<script src="game.js"></script>
</body>
</html>