-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
24 lines (21 loc) · 1020 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Multiplayer Mario</title>
<script src="/js/phaser.min.js"></script>
<script src="/socket.io/socket.io.js"></script>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<img src='./assets/images/titleimage.png' alt='Multiplayer Mario!' id='titleImage'>
<a href='./scores'><img src='./assets/images/highscores.png' alt='Click for High Scores' id='highScores'></a>
<img src='./assets/images/controls1.png' alt='X to Jump, Z to Accelerate' id='controls1'>
<img src='./assets/images/controls2.png' alt='Arrow Keys for Movement' id='controls2'>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script type="text/javascript" src='./js/states/state0.js'></script>
<script type="text/javascript" src='./js/states/state1.js'></script>
<script type="text/javascript" src='./js/main.js'></script>
<script type="text/javascript" src='./js/client.js'></script>
</body>
</html>