generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
45 lines (45 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<title>Mad Lib Game</title>
</head>
<body>
<div class="wrapper">
<div class="header">
<a href="index.html">
<img class="logo" src="public/madlibs_logo.png" />
</a>
</div>
<div class="flex-menu">
<!-- PLAY BUTTON NEEDS JS FUNCTIONALITY TO LEAD TO STORY1 -->
<button class="buttons play" onclick="document.location='play.html'">
Play
</button>
<button
class="buttons instructions"
onclick="document.location='instructions.html'"
>
Instructions
</button>
<button
class="buttons ourteam"
onclick="document.location='ourteam.html'"
>
Our Team
</button>
<button
class="buttons github"
onclick="window.location.href=`https://github.com/chingu-voyages/v43-tier1-team-08`"
>
Github
</button>
</div>
<footer class="footer">
<p>Terms & Conditions</p>
<p>© 2023 Made with ❤️ at Chingu</p>
<p>Privacy Policy</p>
</footer>
</div>
</body>
</html>