-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (31 loc) · 798 Bytes
/
index.html
File metadata and controls
38 lines (31 loc) · 798 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
30
31
32
33
34
35
36
37
38
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>RPG</title>
<script src="/socket.io/socket.io.js"></script>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="hotKeys"></div>
<div class="scores"></div>
<!--<div class="start">-->
<!--<div class="start_game" onclick="startGame()">-->
<!--Start game-->
<!--</div>-->
<!--</div>-->
<div class="poly">
<div class="sun"></div>
<div class="fog"></div>
<div class="foot">
</div>
</div>
<script src="static/game.js"></script>
<script>
document.ondragstart = noselect;
document.onselectstart = noselect;
document.oncontextmenu = noselect;
function noselect() {return false;}
</script>
</body>
</html>