-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (33 loc) · 1.1 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
<!doctype html>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<link rel="stylesheet" href="./css/style.css">
<title> Swordfish </title>
<!--<script src="https://pixijs.download/release/pixi.js"></script>-->
</head>
<body>
<script type="text/javascript" src="https://pixijs.download/v6.5.9/pixi.js"></script>
<script>
window.oncontextmenu = function(e){
e.preventDefault();
}
</script>
<script src="./js/app.js" type="module"></script>
<div id = "app_container"> </div>
<h1> SWORDFISH </h1>
<h2> Instructions </h2>
<ol>
<li> Left click to accelerate </li>
<li> Right click to brake </li>
<li> Esc to pause </li>
<li> Fly </li>
</ol>
<h2> Tips </h2>
<ol>
<li> Collect oil tanks can get you futher </li>
<li> They might repair the ship as well </li>
</ol>
</body>
</html>