-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathend.html
43 lines (38 loc) · 1.65 KB
/
end.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="quick quiz app to test user's knowledge in computer science">
<meta name="keywords" content="html, css, bootstrap, javascript">
<meta name="author" content="mohamed hadaey">
<link rel="icon" href="images/Angular_full_color_logo.svg.png">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/end.css">
<title>Congrats!</title>
</head>
<body>
<section id="home">
<div class="container">
<div class="row">
<div class="col-12 w-100 h-100 d-flex justify-content-center align-items-center">
<div class="caption text-center d-flex flex-column" id="end">
<h1 id="finalScore"></h1>
<form>
<input type="text" name="username" id="username" placeholder="username" autocomplete="off">
</form>
<button type="submit" id="saveScoreBtn" onclick="saveHighScore(event)" disabled>Save</button>
<a href="questions.html">Play Again</a>
<a href="index.html">Go Home</a>
</div>
</div>
</div>
</div>
</section>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/end.js"></script>
</body>
</html>