-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (65 loc) · 3.22 KB
/
index.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
60
61
62
63
64
65
66
67
68
<html>
<head>
<meta charset="UTF-8">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap" rel="stylesheet">
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "EB Garamond", serif}
.center {
text-align: center;
margin: auto;
width: 40%;
border: 3px solid blue;
padding: 10px;
border-radius: 12px;
}
.main_text {
margin: auto;
width: 75%;
}
.image {
border: 1px solid white;
border-radius: 6px;
padding: 15px;
}
.highhead {
font-style: italic;
}
.highname {
font-weight: bold;
}
.highscore {
}
</style>
</head>
<body>
<header style="padding:48px 16px; background: white; color: blue; font-variant: small-caps">
<h1 class="center">Crystal Castle<br>40th Anniversary Edition</h1>
</header>
<center><img class="image" width="200" src="Boxart.jpg"></img><img class="image" src="loading.png"></img><img class="image" width="200" src="cassette3.png"></img></center>
<div class="main_text">
<h2>The 40th Anniversary Edition, 1984-2024</h2>
<p>Forty years in the making... this is a puzzle based platform game for the BBC Micro and Master computers, an extensive update to the original 1984 game Crystal Castle.</p>
<ul>
<li>It is available for download <a href="main.ssd">here</a>, or play online <a href="http://bbc.xania.org/?model=B-DFS1.2&autoboot&disc=https://tobylobster.github.io/cc/main.ssd">here</a>.
<li>The User Guide, including the history of the game's development, is <a href="UserGuide.pdf">here</a>.
<li>We will publish the source code, developer tools, and documentation on how to create your own castles with the same engine on 26th February 2025.
<li>In the meantime, the highest scores posted to the Stardot forums will be immortalized here.
</ul>
<h2>Highest Scorers</h2>
<table>
<thead>
<tr><td class="highhead">Name</td><td class="highhead"></td><td class="highhead">Score</td></tr>
</thead>
<tr><td class="highname">billcarr2005</td><td> ... </td><td class="highscore">144</td></tr>
<tr><td class="highname">AngusH</td><td> ... </td><td class="highscore">72</td></tr>
<tr><td class="highname">tnash's cat</td><td> ... </td><td class="highscore">8</td></tr>
</table>
<h2>The Original Game, 1984</h2>
<p>The original game is available for download <a href="original/crystal.ssd">here</a>, or play online <a href="http://bbc.xania.org/?model=B-DFS1.2&autoboot&disc=https://tobylobster.github.io/cc/original/crystal.ssd">here</a>.
<p>TobyLobster, Jan 2025.
</p>
</div>
</body>
</html>