-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgameonly.html
75 lines (63 loc) · 3.09 KB
/
gameonly.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
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>King of Space: Reconstruction of a Narrative Game</title>
<link rel="shortcut icon" type="image/png" href="../img/kosabt.png">
<link rel="stylesheet" href="css/gamestyles.css" type="text/css">
<!--<script type="text/javascript" src="js/getarray.js"></script>
<script type="text/javascript" src="js/story.js"></script>
<script type="text/javascript" src="js/library.js"></script>-->
<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=Montserrat:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body>
<!-- Hamburger Menu -->
<header>
<div class="container">
<input class="hamburger-button" type="checkbox" id="hamburger-button" />
<label for="hamburger-button">
<div></div>
</label>
<div class="menu">
<nav>
<ul>
<li><a href="game.html">Main</a></li>
<!-- <li><a href="/">How to Play</a></li> -->
<li><a href="prologue.html">About The World</a></li>
<li><a href="characters.html">Characters</a></li>
<li><a href="gameonly.html">Game Only Mode</a></li>
<li><a href="library.html">Game Library</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- End of Hamburger Menu -->
<div id="game_wrapper">
<h1>Game Only Mode</h1>
<div id="game_grid">
<button class="game-button" id="erotogenerator" onclick="location.href='minigamesingame/erotogenerator-puzzle/index.html'">
<p class="button-overlay">Erotogenerator</p>
</button>
<button class="game-button" id="radar" onclick="location.href='minigamesingame/radar-puzzle/radar/index.html'">
<p class="button-overlay">Radar</p>
</button>
<button class="game-button" id="slide-puzzle" onclick="location.href='minigamesingame/slide-puzzle/index.html'">
<p class="button-overlay">Slide Puzzle</p>
</button>
<button class="game-button" id="troop" onclick="location.href='minigamesingame/troop-carrier/index.html'">
<p class="button-overlay">Troop Carrier</p>
</button>
<!-- <button class="game-button" id="tetris" onclick="location.href='minigamesingame/tetris-puzzle/index.html'">
<p class="button-overlay">Tetris</p>
</button> -->
<button class="game-button" id="kitchen" onclick="location.href='minigamesingame/kitchen-puzzle/index.html'">
<p class="button-overlay">Kitchen</p>
</button>
</div>
</div>
</body>
</html>