-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
79 lines (67 loc) · 2.33 KB
/
Main.html
File metadata and controls
79 lines (67 loc) · 2.33 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
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="Main.css">
<title>Neuro Nurturer</title>
</head>
<body>
<div class="butterflies-container">
<div class="firefly-container">
<div class="firefly"></div>
</div>
</div>
<script src="Main.js"></script>
<style rel="stylesheet" href="Main.css"></style>
<header>
<h1>
Welcome To The Garden
</h1>
</header>
<nav>
<ul>
<li1> <div class="dropdown">
<button class="dropbtn" onclick="location.href='aboutus.html'" >About Us</button>
</li1>
<li2> <div class="dropdown">
<button class="dropbtn">Pick A Game</button>
<div class="dropdown-content">
<a href='Game1.html'>Arrange The Seeds</a>
<a href='Game2.html'>Remember Your Poisons</a>
<a href='Game3.html'>Know Thy Self</a>
</div>
</li2>
<li3><div class="dropdown">
<button class="dropbtn" onclick="location.href='Sandbox.html'">Our Mission</button>
</li3>
</ul>
</nav>
<main>
<div class="container">
<div class="column">
<a href="Game1.html" class="button">
<h2>Arrange The Seeds</h2>
<p>Click the correct answer choice associated with the picture</p>
</a>
</div>
<div class="column">
<a href="Game2.html" class="button">
<h2>Remember Your Poisons</h2>
<p>Match the assorted letters to form a word</p>
</a>
</div>
<div class="column">
<a href="Game3.html" class="button">
<h2>Know Thy Self</h2>
<p>Drag and match the colors and shapes to their descriptions</p>
</a>
</div>
</div>
<!-- Content for the menu page -->
</main>
<footer>
© Div Like Guys
</footer>
</body>
</html>