-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
26 lines (22 loc) · 991 Bytes
/
game.html
File metadata and controls
26 lines (22 loc) · 991 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
<!DOCTYPE html>
<html>
<head>
<title>My Game</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@600&display=swap" rel="stylesheet">
<link href="style.css" rel="stylesheet" />
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="gamefuncs.js" type="text/javascript"></script>
<script src="skulpt/skulpt_mods.js" type="text/javascript"></script>
<script src="skulpt/skulpt_lib.js" type="text/javascript"></script>
</head>
<body>
<script src="skulpt/skulpt_init.js" type="text/javascript"></script>
<div id="errorMessage"></div>
<div id='canvas'></div>
<script src="./final-game-code.js"></script>
<script>readyCompiler('start()\n' + cfa_final_game_code);</script>
</body>
</html>