-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhiscores.html
37 lines (32 loc) · 1.41 KB
/
hiscores.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
<!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 href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans:500,500i,700,700i|Londrina+Solid:400,900" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/hiscore.css">
<title>Project GitGrub : High Scores</title>
</head>
<body>
<h1 class = "main-title">Project GitGrub</h1><h2>Kitchen Showdown Hall of Fame</h2>
<div class = "flex-grid">
<div class = "row">
<table id = "high-score-display-table">
<thead><tr><th>Player Name</th><th class = "number-row">Score</th></tr></thead>
<tbody></tbody>
</table>
</div>
</div>
<button id = "clear-high-scores" onclick = "clearHighScoresArray();">Clear High Scores</button>
<div class = "row"></div>
<div class = "nav-container">
<a href="intro.html" class = "index-button">Start New Game</a>
<a href="gameapp.html" class = "index-button">Resume Game</a>
<a href="aboutus.html" class = "index-button">About Us</a>
<a href="index.html" class = "index-button">Home</a>
</div>
<script src = "js/highscore.js"></script>
</body>
</html>