-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 860 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Keep It Rollin Game</title><!-- ToDo -->
<link data-trunk rel="copy-dir" href="assets" />
<link data-trunk rel="copy-dir" href="credits" />
<link data-trunk rel="icon" href="build/windows/icon.ico" />
<link data-trunk rel="inline" href="build/web/styles.css" />
</head>
<body>
<link
data-trunk
rel="rust"
data-type="main"
href="Cargo.toml"
data-bin="keep-it-rolling-game"
data-wasm-opt="0"
/><!-- ToDo -->
<link data-trunk rel="inline" href="build/web/sound.js" />
<div class="container">
<span id="wasm-loading-text" class="container__loadingText"
>Loading...</span
>
<canvas id="my-game">
Javascript and support for canvas is required
</canvas>
</div>
</body>
</html>