-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
32 lines (30 loc) · 1.18 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Subway Surfer</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="../webgl.css" type="text/css">
</head>
<body style="background-color:lightblue">
<div class ="container-fluid">
<h1>Subway Surfer - Pulkit Gera</h1>
<canvas id="glcanvas" width="1280" height="720"></canvas>
<h2>Score:</h2><h2 id="score"></h2>
<h3>PowerUp: </h3><h3 id ="powerup"></h3>
<h1 id ="gameover"></h1>
<img id="base-image" src = "base.jpg" width =0 height =0/>
</div>
</body>
<script src="./gl-matrix.js"></script>
<script src ="./load.js"></script>
<script src = "./base.js"></script>
<script src = "./rec.js"></script>
<script src = "./wall.js"></script>
<script src ="./coin.js"></script>
<script src = "./input.js"></script>
<script src ="./human.js"></script>
<script src="./barricade.js"></script>
<script src="./train.js"></script>
<script src="./main.js"></script>
</html>