-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 2.58 KB
/
index.html
File metadata and controls
76 lines (71 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
<!--
Toolbox Aid
David Quesenberry
04/19/2026
index.html
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML JavaScript Gaming</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="src/engine/theme/main.css" />
<link rel="stylesheet" href="src/engine/ui/hubCommon.css" />
</head>
<body class="hub-page-home hub-page-home--viewport">
<div id="shared-theme-header"></div>
<main class="page-shell">
<section class="page-intro">
<h1>HTML JavaScript Gaming</h1>
<p>
A home base for playable arcade builds, sample-driven engine patterns, and shared tooling.
Use the hub links below to open games, samples, and tools.
</p>
</section>
<section class="content-section">
<h2>Arcade Games, Engine Samples, and Tools</h2>
<p>
HTML JavaScript Gaming is a browser-based game development hub with playable arcade projects,
engine-focused sample phases, and practical tooling for rapid iteration.
</p>
</section>
<section class="content-section">
<h2>Primary Hubs</h2>
<p>Open the main launcher surfaces for gameplay, sample references, and tooling workflows.</p>
<div class="card-grid">
<a class="card-link" href="games/index.html">
<h3>Games</h3>
<p>Launch playable projects and review the current game progression lane.</p>
</a>
<a class="card-link" href="samples/index.html">
<h3>Samples</h3>
<p>Browse sample phases to inspect engine patterns and reference implementations.</p>
</a>
<a class="card-link" href="tools/index.html">
<h3>Tools</h3>
<p>Open the tool surfaces for asset and workflow support.</p>
</a>
</div>
</section>
<section class="content-section">
<h2>Featured Games</h2>
<div class="card-grid">
<a class="card-link" href="games/GravityWell/index.html">
<h3>Gravity Well</h3>
<p>Vector-style orbital gameplay focused on gravity assists and beacon collection.</p>
</a>
<a class="card-link" href="games/Asteroids/index.html">
<h3>Asteroids</h3>
<p>Classic arcade combat with tuned handling and score-driven loops.</p>
</a>
</div>
</section>
<div class="footer-note">
Open this repo through a local web server for reliable module and asset loading.
</div>
</main>
<script type="module" src="./src/engine/theme/mount-shared-header.js"></script>
</body>
</html>