-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (29 loc) · 976 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
25
26
27
28
29
30
31
32
33
<!doctype html>
<html>
<head>
<title>Rocket universe !</title>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lobster|Roboto" rel="stylesheet">
<link href="./styles.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>Rocket universe <i class="fa fa-rocket"></i></h1>
<div id="playerName"></div>
<br>
<canvas id="game" width="550" height="550"></canvas>
<table id="playersScore">
<thead>
<tr>
<th>Nom</th>
<th>Score</th>
</tr>
</thead>
</table>
</div>
<script src="/socket.io/socket.io.js"></script>
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script src='./client.js'></script>
</body>
</html>