-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (41 loc) · 1.46 KB
/
index.html
File metadata and controls
52 lines (41 loc) · 1.46 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Fortune Teller</title>
<link rel="icon" type="image/png" href="assets/fortune-teller-icon.png">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Cinzel&display=swap" rel="stylesheet">
</head>
<body>
<!-- Language Switcher -->
<div class="lang-wrapper">
<!-- Music Toggle -->
<button id="music-btn" class="music-btn muted">♬</button>
<!-- language toggle and dropdown -->
<button id="lang-toggle" class="lang-toggle" type="button" aria-label="Select language">🌐</button>
<div class="lang-switcher">
<button data-lang="EN" class="active">EN</button>
<button data-lang="ES">ES</button>
<button data-lang="NO">NO</button>
<button data-lang="PT">PT</button>
<button data-lang="DE">DE</button>
<button data-lang="FR">FR</button>
</div>
</div>
<!-- Main Container -->
<div class="container">
<img id="fortune-gif" src="assets/fortune-teller-gif.gif" alt="Fortune ball">
<h1 id="title">Your Fortune</h1>
<button id="fortune-btn" style="margin-top:20px;">Reveal Fortune</button>
<p id="fortune"></p>
</div>
<!-- Sound Effect -->
<audio id="button-sound" src="assets/button-effect.mp3"></audio>
<!-- Footer -->
<footer>
coded by <a href="https://petratype.github.io/portfolio" target="_blank">petratype</a>
</footer>
<script src="script.js"></script>
</body>
</html>