-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Emoji Maze</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Emoji Maze</h1>
<h2>Select a game mode!</h2>
<table>
<tr>
<td>
<form action="game.html" method="get">
<input type="submit" value="Normal">
</form>
</td>
<td>Complete a casual 11x11 maze 🐣</td>
</tr>
<tr>
<td>
<form action="game.html" method="get">
<input type="submit" value="Hard">
</form>
</td>
<td>Complete the biggest 27x27 maze 👿</td>
</tr>
<tr>
<td>
<form action="game.html" method="get">
<input type="submit" value="Get the goal">
</form>
</td>
<td>Complete 10 mazes with different difficult 🏁</td>
</tr>
<tr>
<td>
<form action="game.html" method="get">
<input type="submit" value="Infinity">
</form>
</td>
<td>Complete a infinite number of mazes ⌛</td>
</tr>
</table>
<footer>
<p>Development by <a href="https://izakcancino.github.io">Izak Cancino</a></p>
</footer>
<script src="scripts/gamemode.js"></script>
</body>
</html>