-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighscores.html
51 lines (47 loc) · 1.85 KB
/
highscores.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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Highscores</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<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/css/style.css" />
</head>
<body onload="displayHighscoresList()">
<div class="container" id="main-container">
<div class="row" id="highscore-heading-row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<h1>HighScores</h1>
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8" id="highscore-list-div">
<ol id="highscores-list"></ol>
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<button type="button" onclick="location.href='./index.html'" class="btn btn-sm go-back-btn"
id="go-back-btn">
Go Back
</button>
<button type="button" class="btn btn-sm clear-highscores-btn" id="clear-highscores-btn">
Clear Highscores
</button>
</div>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>