|
<!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;
|
|
}
|
|
|
|
|
|
.top-right-overlay {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 12px;
|
|
width: 220px;
|
|
height: 48px;
|
|
background-color: #111;
|
|
z-index: 10;
|
|
}
|
|
|
|
|
|
.footer-overlay {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
height: 40px;
|
|
width: 420px;
|
|
background: #111;
|
|
z-index: 10;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<iframe src="https://mohamedrashad-orpheus-tts.hf.space"></iframe>
|
|
|
|
|
|
<div class="top-right-overlay"></div>
|
|
<div class="footer-overlay"></div>
|
|
</body>
|
|
</html>
|
|
|