-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 762 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html><head>
<title>RacerJs Turbo Challenge</title>
<script type="text/javascript" src="data.js"></script>
<script type="text/javascript" src="tools.js"></script>
<script type="text/javascript" src="game.js"></script>
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<style>
html, body {
margin: 0;
padding: 0;
overflow: visible;
background: black;
}
</style>
</head>
<body>
<canvas id="c" style="position: absolute; -webkit-transform: translateZ(0)"></canvas>
</body>
</html>