Upload index.html
Browse files- index.html +51 -0
index.html
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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>
|