forked from lucaheft/GameStateIntegrationWebApp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 807 Bytes
/
index.html
File metadata and controls
29 lines (25 loc) · 807 Bytes
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
<!doctype html>
<html>
<head>
<title>GamestateIntegration Radar</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
</style>
<link rel="stylesheet" type="text/css" href="/public/style.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,700" rel="stylesheet">
</head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.0.4/socket.io.js"></script>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="/public/code.js"></script>
<body>
<div id="players_ct">
</div>
<div id="map">
</div>
<div id="gameinfo">
</div>
<div id="players_t">
</div>
</body>
</html>