Pp commited on
Commit
814815e
·
verified ·
1 Parent(s): 9488cf2

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +40 -18
index.html CHANGED
@@ -1,19 +1,41 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Retro Rotary Dialer - Clicking Sound</title>
7
+ <link rel="stylesheet" href="style.css">
8
+ <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap" rel="stylesheet">
9
+ </head>
10
+ <body>
11
+ <div class="phone-body">
12
+ <div class="display-panel">
13
+ <span id="dialed-numbers"></span>
14
+ <button id="call-button" aria-label="Call">📞</button>
15
+ </div>
16
+
17
+ <div class="dial-assembly">
18
+ <!-- Rotating Dial Plate -->
19
+ <div id="dial">
20
+ <!-- Holes and Numbers generated here -->
21
+ <div class="dial-center-design"></div>
22
+ </div>
23
+
24
+ <!-- Finger Stop -->
25
+ <div id="finger-stop"></div>
26
+ </div>
27
+
28
+ <button id="clear-button">Clear</button>
29
+
30
+ <!-- Audio Elements -->
31
+ <!-- Sound for the main dial return "whoosh" (optional) -->
32
+ <audio id="dial-return-sound" src="rotary-dial-return.mp3" preload="auto"></audio>
33
+ <!-- Sound for the individual clicks -->
34
+ <audio id="dial-click-sound" src="rotary-click.mp3" preload="auto"></audio>
35
+ <!-- NOTE: You need to provide the actual sound files rotary-dial-return.mp3 and rotary-click.mp3 -->
36
+
37
+ </div>
38
+
39
+ <script src="script.js"></script>
40
+ </body>
41
  </html>