-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtryagain.html
More file actions
34 lines (29 loc) · 1.07 KB
/
tryagain.html
File metadata and controls
34 lines (29 loc) · 1.07 KB
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="instructions.css" type="text/css" />
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<script src="addScore.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Game Over</title>
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>Game Over </h1>
<br>
<div class = "score">
Score :
<span class = "scoreNumber"></span>
</div>
<br>
<p class="words"> Nice try ! Click the "Try Again" button if you'd like to play again to get a higher score or
click the "End Game" button to end the game"</p>
<p><a type="button" class="button" href="game.html" value="Try Again">Try Again</a>
<a type="button" class="button" href="index.html" value="End Game">End Game</a>
</div>
</div>
</body>
</html>