forked from ThamerBootcamp/space-invaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.72 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<title>Space Invaders</title>
</head>
<body >
<div class="container">
<h1 >Space Invaders</h1>
<div class="col-md-6 row p-3">
<!-- <div class=" col-md-3 ">
<button class="btn btn-secondary btn-sm" id="restart" onmouseup="window.location.reload();"> Restart</button>
</div> -->
<div class="col-md-3">
<button class="btn btn-success btn-sm" id="easy" onmouseup="window.location.reload();"> Easy</button>
</div>
<div class="col-md-3">
<button class="btn btn-warning btn-sm" id="medium" onmouseup="setMed()"> Medium</button>
</div>
<div class="col-md-3">
<button class="btn btn-danger btn-sm" id="hard" onmouseup="setHard();"> Hard</button>
</div>
</div>
</div>
<div class="container">
<img id="background" src="./img/bg.gif" alt="canvas">
<canvas id="canvas"></canvas>
</div>
<script src="js/app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>
</body>
</html>