-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhighscores.html
More file actions
40 lines (34 loc) · 1.32 KB
/
highscores.html
File metadata and controls
40 lines (34 loc) · 1.32 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
35
36
37
38
39
40
<!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">
<title>High Scores</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 ">
<h1>High Scores</h1>
<ul id="highScoresList">
</ul>
<a href="index.html">Go Home</a>
</div>
</div>
</div>
</div>
</section>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/highScores.js"></script>
</body>
</html>