-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainGame.html
33 lines (32 loc) · 1.13 KB
/
MainGame.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fortune Cookie Teller</title>
<link rel="stylesheet" href="assets/css/styles.css">
<script src="assets/js/script.js"></script>
<link href="https://fonts.googleapis.com/css2?family=DynaPuff:[email protected]&display=swap" rel="stylesheet">
</head>
<body class="bgimg">
<!--Add audio-->
<audio autoplay loop>
<source src="assets/sounds/mystical-music.mp3" type="audio/mpeg">
<source src="assets/sounds/mystical-music.ogg" type="audio/ogg">
Your device does not support audio dor this product.
</audio>
<div class="wrapper">
<main>
</main>
<!--Top buffer-->
<div class="container1"></div>
<!--Fortune to be told-->
<div class="quote-container">
<p id="quote">Are you ready for your fortune to be told? </p>
<button id="new-quote" value="sound" onclick="playMusic()" />Tell me my fortune</button>
</div>
<div id="sparkles-container">
</div>
</div>
</body>
</html>