-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathscores.html
More file actions
65 lines (61 loc) · 1.42 KB
/
scores.html
File metadata and controls
65 lines (61 loc) · 1.42 KB
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
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scores</title>
<link rel="icon" href="favicon.ico" />
</head>
<body>
<header>
<h1>Simon<sup>®</sup></h1>
<nav>
<menu>
<li><a href="index.html">Home</a></li>
<li><a href="play.html">Play</a></li>
<li><a href="scores.html">Scores</a></li>
<li><a href="about.html">About</a></li>
</menu>
</nav>
<hr />
</header>
<main>
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Score</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>도윤 이</td>
<td>34</td>
<td>May 20, 2021</td>
</tr>
<tr>
<td>2</td>
<td>Annie James</td>
<td>29</td>
<td>June 2, 2021</td>
</tr>
<tr>
<td>3</td>
<td>Gunter Spears</td>
<td>7</td>
<td>July 3, 2020</td>
</tr>
</tbody>
</table>
</main>
<footer>
<hr />
<span class="text-reset">Author Name(s)</span>
<br />
<a href="https://github.com/webprogramming260/simon-html">GitHub</a>
</footer>
</body>
</html>