File size: 1,054 Bytes
6c85c7f |
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>Orpheus TTS</title>
<style>
body {
margin: 0;
background: #111;
overflow: hidden;
}
iframe {
width: 100vw;
height: 100vh;
border: none;
}
/* Overlay for top-right author name */
.top-right-overlay {
position: absolute;
top: 12px;
right: 12px;
width: 220px;
height: 48px;
background-color: #111;
z-index: 10;
}
/* Overlay for footer */
.footer-overlay {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
height: 40px;
width: 420px;
background: #111;
z-index: 10;
}
</style>
</head>
<body>
<!-- The Orpheus TTS app iframe -->
<iframe src="https://mohamedrashad-orpheus-tts.hf.space"></iframe>
<!-- Overlays to hide author and footer -->
<div class="top-right-overlay"></div>
<div class="footer-overlay"></div>
</body>
</html>
|