blob: 75d8c00dc5d0cc813c6b06d862547170d45d3de5 (
plain)
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
66
67
68
|
<!doctype html>
<html lang="en">
<head>
<title>Games</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- <link rel="stylesheet" type="text/css" href="/css/styles.css"> -->
<style>
.mobile::after {
content: "*";
}
.score::after {
content: "†";
}
body {
padding-left: 3%;
padding-top: 1%;
}
li {
list-style: none;
margin-bottom: 3px;
font-size: 28px;
}
.gamesList {
margin-left: 3%;
}
</style>
</head>
<body>
<h1>Games</h1>
<div class="gamesList">
<div>
<h2>Arcade</h2>
<ul>
<!-- Does not work <li><a href="/pinball">Pinball (demo)</a></li> -->
<li><a href="/snake">Snake</a><span class="score"></span></li>
<li><a href="/stacker">Stacker</a><span class="score"></span><span class="mobile"></span></li>
<li><a href="/math">Math mini games</a></li>
<li><a href="/pp/index.html">Picture pieces</a></li>
<li><a href="/cosmic-cargo">Cosmic Cargo</a><span class="score"></span></li>
<li><a href="/sim">Sim</a><span class="score"></span></li>
<li><a href="/paperflight">Paper Flight</a><span class="score"></span></li>
</ul>
</div>
<div>
<h2>Multiplayer</h2>
<ul>
<!-- Does not work <li><a href="/ur">Royal Game of Ur</a></li> -->
<li><a href="/quadrowple">Quadrowple</a></li>
<li><a href="/quiz-bunny">Quiz Bunny</a></li>
</ul>
</div>
</div>
<div>
<p><span class="mobile"></span> denotes mobile compatible</p>
<p><span class="score"></span> denotes on score list</p>
</div>
<div>
<h1><a href="/highscores">High Scores</a></h1>
</div>
</body>
</html>
|