tdnathmlenthusiast commited on
Commit
e968021
·
verified ·
1 Parent(s): 6039f3c

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +50 -18
index.html CHANGED
@@ -1,19 +1,51 @@
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
+ <title>Orpheus TTS</title>
6
+ <style>
7
+ body {
8
+ margin: 0;
9
+ background: #111;
10
+ overflow: hidden;
11
+ }
12
+
13
+ iframe {
14
+ width: 100vw;
15
+ height: 100vh;
16
+ border: none;
17
+ }
18
+
19
+ /* Overlay for top-right author name */
20
+ .top-right-overlay {
21
+ position: absolute;
22
+ top: 12px;
23
+ right: 12px;
24
+ width: 220px;
25
+ height: 48px;
26
+ background-color: #111;
27
+ z-index: 10;
28
+ }
29
+
30
+ /* Overlay for footer */
31
+ .footer-overlay {
32
+ position: absolute;
33
+ bottom: 0;
34
+ left: 50%;
35
+ transform: translateX(-50%);
36
+ height: 40px;
37
+ width: 420px;
38
+ background: #111;
39
+ z-index: 10;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body>
44
+ <!-- The Orpheus TTS app iframe -->
45
+ <iframe src="https://mohamedrashad-orpheus-tts.hf.space"></iframe>
46
+
47
+ <!-- Overlays to hide author and footer -->
48
+ <div class="top-right-overlay"></div>
49
+ <div class="footer-overlay"></div>
50
+ </body>
51
  </html>