-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion1.html
30 lines (28 loc) · 979 Bytes
/
question1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Question 1</title>
<style>
body {
background-image: url('aoxwizz/4.jpg');
}
</style>
<link rel="stylesheet" href="style.css">
</head>
<body onload="initializePage()">
<div class="container">
<p class="Questiosn">Do I prefer coffee or tea?</p>
<div class="booog">
<button class="button-booog" onclick="handleAnswer(1, true, 'question2.html')">Tea</button>
<button class="button-booog" onclick="handleAnswer(1, false, 'question2.html')">Coffee</button>
</div>
</div>
<div class="footer">
Made by <a href="https://www.instagram.com/aoxwizz?igsh=ZG1lOGM5M3d4OWY1&utm_source=qr">@aoxwizz</a>.<br>
Thank you for visiting my website.
</div>
<script src="script.js"></script>
</body>
</html>