Create index.html

This commit is contained in:
Lex-au 2025-03-22 05:07:43 +11:00
parent e3248365a8
commit 994514f029

60
docs/index.html Normal file
View file

@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orpheus-FASTAPI - Demo Files</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #121212;
color: #ffffff;
}
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 10px;
border: 1px solid #333;
text-align: left;
}
th {
background-color: #222;
}
a {
color: #1E90FF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Orpheus TTS - Demo Files</h1>
<table>
<thead>
<tr>
<th>Voice</th>
<th>File</th>
</tr>
</thead>
<tbody>
<tr>
<td>Leah - Happy</td>
<td><a href="LeahHappy.mp3" target="_blank">LeahHappy.mp3</a></td>
</tr>
<tr>
<td>Tara - Sad</td>
<td><a href="TaraSad.mp3" target="_blank">TaraSad.mp3</a></td>
</tr>
<tr>
<td>Zac - Contemplative</td>
<td><a href="ZacContemplative.mp3" target="_blank">ZacContemplative.mp3</a></td>
</tr>
</tbody>
</table>
</body>
</html>