-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhighscores.html
60 lines (60 loc) · 2.14 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
52
53
54
55
56
57
58
59
60
<!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" />
<meta name="Description" content="Enter your description here" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<title>Music Quiz High Scores</title>
</head>
<body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.6.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="assets/css/style.css" />
<header
class="jumbotron jumbotron-fluid bg-dark text-light display-4 text-center"
>
<strong>Musical Geniuses:</strong>
</header>
<section class="d-flex flex-column justify-content-center">
<div class="col-12">
<p class="text-center display-5">
Your score was <span id="highScore"></span>
</p>
</div>
<br />
<div class="col-12">
<div class="d-flex justify-content-center">
<div class="card text-dark bg-warning width-8 height-8">
<div class="">
<label for="name-input">Your name:</label>
<input
type="text"
class="form-control"
id="name-input"
placeholder="Enter your name"
/>
</div>
<button class="button">Submit Message.</button>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div id="celebration" class="col-8"><h3>High Scores:</h3></div>
</div>
</div>
</section>
<script src="assets/js/hsscript.js"></script>
</body>
</html>