-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="de-DE">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Run for it!</title>
<!-------------------Stylesheets--------------------->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Bungee+Spice"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Source+Sans+3"
/>
<link rel="stylesheet" type="text/css" href="./assets/css/run_style.css" />
</head>
<body>
<main class="bg-black container-fluid vh-100">
<div class="row h-100 text-center">
<div class="col-xl-3 p-5">
<h1>Run!</h1>
<p class="instructions">
Use the arrow keys (← ↑ → ↓ ) to move the black rectangle and avoid getting
touched by the moving circles
</p>
<button class="btn-newGame">New Game</button>
</div>
<div class="col-xl-6 d-flex justify-content-center align-items-center px-5">
<p class="game-over-info">GAME OVER</p>
<canvas id="myCanvas" width="800" height="600" class="w-100 h-75"></canvas>
</div>
<div class="col-xl-3 p-5">
<div class="row h-100">
<div class="row">
<div class="col">
<time class="stopp-watch">00:00:00</time>
<h2>Highscores:</h2>
<div class="bg-white-transparent rounded-1">
<ul class="highscores-list"></ul>
</div>
</div>
</div>
</div>
</div>
</main>
<!-------------------Scripts--------------------->
<script src="./assets/js/run.js" type="module"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>