-
Notifications
You must be signed in to change notification settings - Fork 0
/
high-scores.html
49 lines (41 loc) · 1.57 KB
/
high-scores.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>JS High Scores</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="./Assets/style1.css" />
</head>
<body>
<header>
<h1>High Scores</h1>
</header>
<main class="container">
<div class="card">
<section class="card-header">
<h2>Top 5 JS-Quiz Leaders:</h2>
</section>
<section id="parent-table" class="card-body">
<div id="child-table">
<ol id="scoresList"></ol>
</div>
</section>
<section class="card-footer">
<button id="back-to-quiz" class="btn"><a id="back" href="index.html">Back to JS Quiz</a></button>
<button id="clear-scores" class="btn">Clear Scores</button>
</section>
</div>
</main>
<footer>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-4" id="copyright">© 2020 <a href="https://bohdicave.github.io/">Bohdan Pechenyak</a></div>
<div class="col-md-4"></div>
</div>
<p> </p>
</footer>
<script src="./Assets/script1.js"></script>
</body>
</html>