-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgamification.html
More file actions
37 lines (34 loc) · 1.31 KB
/
gamification.html
File metadata and controls
37 lines (34 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue:wght@400;700&display=swap" rel="stylesheet">
<title>F-words: Future</title>
<link rel="stylesheet" href="./css/gamification_style.css">
</head>
<body>
<p id="title">Let's talk about your dreams!</p>
<div class="container">
<div class="fishbowl">
<div class="water" id="water-level"></div>
<img src="./images/fish.png" alt="Fish" id="fish">
</div>
<div class="memo-section">
<textarea id="memo-input" placeholder="Enter your thoughts..."></textarea>
<button onclick="submitMemo()">Add Memo</button>
<button onclick="startVoiceRecognition()">Start Voice Input</button>
</div>
</div>
<div class="popup" id="popup">
<div class="popup-content">
<p>Congratulations! The fish has escaped!</p>
</div>
</div>
<div class="circle-container">
<div class="circle circle-1" onclick="navigateTo('index.html')">1</div>
<div class="circle circle-2" onclick="navigateTo('roulette.html')">2</div>
</div>
<script src="./gamification_script.js"></script>
</body>
</html>