-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGameover.html
53 lines (50 loc) · 1.47 KB
/
Gameover.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
<!DOCTYPE html>
<html>
<head>
<link rel="icon" href="https://cdn1.iconfinder.com/data/icons/mini-solid-icons-vol-3/16/140-512.png">
<link rel="stylesheet" href="css/animate.css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/styles.css" rel="stylesheet" type="text/css">
<script src="js/jquery-3.3.1.js"></script>
<script src="js/howler.core.js"></script>
<script src="js/scripts.js"></script>
<title>Web Dev Rush</title>
</head>
<ul>
<li><a class="active" href="#home">Home</a></li>
<li><a href="aboutus.html">About</a></li>
</ul>
<body>
<form id ="startGame">
<div class="container">
<div class="closeGame">
<h1><img src="img/webdev.png"></h1>
<button type="submit" class="btn btn-success">Start</button>
</div>
</div>
</form>
<div class="playGame">
<div class="container">
<div id="victoryimg">
<img src="img/gameover.gif">
</div>
<div class="row">
<div class="col-md-6">
<button type="submit" class="btn btn-success">Retry</button>
</div>
<div class="col-md-6">
<button type="submit" class="btn btn-primary">Menu</button>
</div>
</div>
</div>
</div>
</body>
<!-- Footer -->
<footer class="footer">
<div class="container" id="foot">
<hr class="my-4">
<span id="footer"><p>© 2018 <a href="index.html">Web-Dev-Rush</a>, by Epicodus Students .</p></span>
</div>
</div>
</body>
</html>