mesmer-tts / index.html
mesmertech's picture
Deploy static space build
27b1988 verified
Raw
History Blame Contribute Delete
1.24 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Free Text to Speech API — Natural AI Voices Online</title>
<meta name="description" content="Turn text into natural AI speech and download an MP3 — free, no signup. An AI voice generator online with multiple voices, plus a free text to speech API (tts api) for converting text to MP3." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./shared/ui.css" />
<style>
/* Tool-specific touches layered on top of the shared theme. */
.ms-api-note {
margin: 4px 0 0;
font-size: 12.5px;
color: var(--text-muted);
}
.ms-api-note code {
padding: 1px 5px;
border: 1px solid var(--border);
border-radius: 5px;
background: var(--bg-elevated);
color: var(--text-secondary);
font-size: 12px;
}
.ms-fellback {
color: #fcd9a0;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="./app.js"></script>
</body>
</html>