-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmeadow.html
More file actions
39 lines (38 loc) · 1.25 KB
/
meadow.html
File metadata and controls
39 lines (38 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Meadow | Easter Egg Hunt</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="meadow">
<header>
<a href="https://apolloautomation.com/" target="_blank" rel="noopener">
<img src="apollo-logo.png" alt="Apollo Automation Logo" class="logo" />
</a>
</header>
<main>
<div id="eggGrid" class="egg-grid"></div>
<div id="scrambled"></div>
<div id="guessSection" style="display:none;">
<input type="text" id="codeInput" placeholder="Enter the code..." />
<button onclick="checkCode()">Submit</button>
<p id="result"></p>
</div>
<div class="next-location">
<a href="forest.html"><button class="next-btn">🌎 Next: Forest →</button></a>
</div>
</main>
<footer class="map">
<nav>
<a href="forest.html">🏞️ Forest</a> |
<a href="beach.html">🏖️ Beach</a> |
<a href="garden.html">🌷 Garden</a> |
<a href="countryside.html">🚜 Countryside</a> |
<a href="meadow.html">🌼 Meadow</a>
</nav>
</footer>
<script src="script.js"></script>
</body>
</html>