-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FREE BEATS</title>
<link rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="container mx-auto">
<h1 class="text-2xl" id="init">Hey Friend, Can I Ask You Something?</h1>
<button onclick="startQuestions()" id="que">Sure, Ask Away!</button>
<div id="questions" style="display: none;">
<h1 class="text-2xl mt-8">Question 1:</h1>
<p>Do you promise to be honest?</p>
<button onclick="answerYes()">Yes</button>
<button onclick="answerNo()" class="no">No</button>
</div>
<div id="message" style="display: none;">
<p id="messageText"></p>
</div>
</div>
<canvas id="confetti-canvas">
</canvas>
<footer class="text-center mt-8">
Made with ❤️ by Chisomo</a>
</footer>
<script src="https://cdn.jsdelivr.net/npm/confetti-js"></script>
<script src="script.js" ></script>
</body>
</html>