-
Notifications
You must be signed in to change notification settings - Fork 3
/
highScore.html
55 lines (46 loc) · 1.52 KB
/
highScore.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
<!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">
<link rel = "stylesheet" type = "text/css" href = "css/reset.css" />
<link rel = "stylesheet" type = "text/css" href = "css/style.css" />
<link rel = "stylesheet" type = "text/css" href = "css/highScore.css" />
<link href="https://fonts.googleapis.com/css?family=Bangers|Karla|VT323&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Orbitron&display=swap" rel="stylesheet">
<title>Space Castaway</title>
<img src="img/background.jpg" alt="space" id="backgroundimage" />
</head>
<body>
<header>
<nav>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "highScore.html">High Scores</a></li>
<li><a href = "aboutMe.html">About the Creators</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h1>High Score</h1>
</section>
<section>
<table id = "resultsTable">
<thead>
<tr>
<th>Name</th>
<th>Score</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</section>
</main>
<footer>
</footer>
<script src = "js/highScore.js"></script>
</body>
</html>