-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.html
31 lines (30 loc) · 987 Bytes
/
history.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/history.css">
<script src="js/default.js"></script>
<script type="module" src="js/history.js"></script>
<title>Game History</title>
</head>
<body>
<header>
<a href="index.html">
<svg-arrow></svg-arrow>
</a>
<h1>Your game history</h1>
</header>
<main>
<ul class="historyList">
<li class="historyItem">
<p class="main">Score: <span class="Vscore value">100%</span></p>
<p>Game Mode: <span class="Voptions value">Options</span></p>
<p>Set: <span class="Vset value">1234567891234567</span></p>
<p>Questions: <span class="Vqs value">100 (100/000)</span></p>
</li>
</ul>
</main>
</body>
</html>