-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscores.html
59 lines (55 loc) · 2.06 KB
/
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
50
51
52
53
54
55
56
57
58
59
<!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>UofA Bootcamp Coding Quiz</title>
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"href="assets/images/favicon-16x16.png">
<link rel="manifest" href="assets/images/site.webmanifest">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/colors.css">
<link rel="stylesheet" href="assets/css/style.css">
</link>
</head>
<body>
<header>
<h1>UofA Bootcamp Coding Quiz</h1>
</header>
<div id="page-container">
<div id="content-wrap">
<section id="scores">
<article>
<a href="./index.html">Home</a>
<h2>Scores - Ranking -</h2>
<div id="table-container">
<table id="scores-table">
<tr>
<th>Ranking</th>
<th>Initials</th>
<th>Score</th>
<th>Quiz</th>
<th>Level</th>
<th>Date</th>
</tr>
</table>
</div>
<ol id="ol-scores">
<button id="clear">Clear</button>
</ol>
</article>
</section>
</div>
<footer>
<div class="footer-container">
<h3>
<a href="mailto:[email protected]">Made by Daniel Flores © 2022</a>
</h3>
</div>
</footer>
</div>
<script src="./assets/js/scores.js"></script>
</body>
</html>