-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
45 lines (43 loc) · 2.16 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html><head>
<meta charset='utf-8'>
<title>Dr1v3n Wild! 🚗🌴</title>
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=mobile-web-app-capable content=yes>
<link rel=icon type=image/png href=favicon.png?230>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="twitter:title" content="Dr1v3n Wild">
<meta property="og:title" content="Dr1v3n Wild">
<meta name="description" content="Arcade driving with procedural art in a 13 kilobyte package">
<meta name="twitter:description" content="Arcade driving with procedural art in a 13 kilobyte package">
<meta property="og:description" content="Arcade driving with procedural art in a 13 kilobyte package">
<meta name="twitter:image" content="https://raw.githubusercontent.com/KilledByAPixel/Drive13K/refs/heads/main/screenshot.png">
<meta property="og:image" content="https://raw.githubusercontent.com/KilledByAPixel/Drive13K/refs/heads/main/screenshot.png">
<meta name="keywords" content="Driving, Game, Racing, Outrun, Arcade">
<meta name="twitter:creator" content="@KilledByAPixel">
<meta name="twitter:card" content="summary_large_image">
</head><body style="background:#000">
<body>
<script>
onerror=(event, source, lineno, colno, error)=>
{
document.body.style.backgroundColor = '#222';
document.body.innerHTML = `<pre style="color:red;font-size:50px;">` +
`${event}\n${source}\nLn ${lineno}, Col ${colno}`;
}
</script>
<script src=code/debug.js?230></script>
<script src=code/utilities.js?230></script>
<script src=code/webgl.js?230></script>
<script src=code/draw.js?230></script>
<script src=code/scene.js?230></script>
<script src=code/track.js?230></script>
<script src=code/levels.js?230></script>
<script src=code/trackGen.js?230></script>
<script src=code/generative.js?230></script>
<script src=code/input.js?230></script>
<script src=code/audio.js?230></script>
<script src=code/sounds.js?230></script>
<script src=code/vehicle.js?230></script>
<script src=code/hud.js?230></script>
<script src=code/game.js?230></script>
<script src=code/main.js?230></script>