-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Maze Runner Game</title>
<link rel="stylesheet" href="style.css">
<script type="module" src="https://cdnjs.cloudflare.com/ajax/libs/three.js/0.165.0/three.module.js"></script>
<script type="module" src="https://cdnjs.cloudflare.com/ajax/libs/three.js/0.165.0/examples/jsm/controls/OrbitControls.js"></script>
</head>
<body>
<div id="game-container"></div>
<script type="module" src="src/main.js"></script>
<header>
<section class="hero">
<h1>AI-Generated Browser Games</h1>
<p>Experience unique games created by generative AI. New games added regularly!</p>
</section>
</header>
<main>
<h2>All Games</h2>
<div id="gameGrid" class="game-grid"></div>
<section class="about">
<p>Check out the <a href="https://github.com/yourusername/skyenet-games">GitHub repository</a> to learn more
about the technology behind the AI agents behind these games.</p>
</section>
</main>
<script src="games.js"></script>
</body>
</html>