-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 1.31 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" href="./images/ico.png" sizes="50x50">
<title>🌊 Surf Adventure 🏄🏽♀️ - Un juegazo AAA by Carballo Enterprise Corp Megacorporation S.A. (Patent Pending)</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<script type="text/javascript" src="./js/sounds.js"></script>
<script type="text/javascript" src="./js/obstacles.js"></script>
<script type="text/javascript" src="./js/background.js"></script>
<script type="text/javascript" src="./js/ola.js"></script>
<script type="text/javascript" src="./js/player.js"></script>
<script type="text/javascript" src="./js/game.js"></script>
<script type="text/javascript" src="./js/index.js"></script>
</head>
<body>
<div class="logo"><img src="./images/logo.png" alt="Surf Adventure" width="200px" height="170px"></div>
<div class="botones">
<button id="startBtn">START</button>
<button id="stopBtn">PAUSE</button>
</div>
<div class="controles">
<p>Controles: Saltar con SPACE</p>
</div>
<canvas id="game-surf" width="800" height="450"></canvas>
</body>
</html>