-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (31 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>CYOA</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="img/BackgroundImg.jpg" alt="Jungle" class="background-image">
<div class="cyoa">
<h1>Jungle - Time Warp</h1>
<div class="introduction-text">
<h4>
Welcome to our game Jungle Time Warp!<br>
Click on "Start the game" below to begin your journey, or stay here to enjoy this banger 🎶
</h4>
</div>
<div class="choices-container">
<a href="play.html">
<div class="choice">
<div class="choice-text-area">
<div class="choice-title">Start the game</div>
</div>
</div>
</a>
</div>
<audio autoplay loop>
<source src="mp3/menu.mp3" type="audio/mpeg">
</audio>
</div>
</body>
</html>