Multi_Person_TTS_Demo / index.html
tdnathmlenthusiast's picture
Upload index.html
6c85c7f verified
<!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>