-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (27 loc) · 1.11 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<meta name='author' content='Jet Fontanilla <jetlogs@gmail.com>'>
<title>Speech Synthesis Demo</title>
<link rel='icon' type='image/png' href='public/favicon.png'>
<link rel='stylesheet' href='public/global.css'>
<link rel='stylesheet' href='public/build/bundle.css'>
<script defer src='public/build/bundle.js'></script>
</head>
<body>
<div class="container heading-section">
<div class="section justify-content-between align-items-center">
<div>
<h2>Speech Synthesis API Demo</h2>
<div>This is a simple demo of what a browser is currently capable of with it's built-in text-to-speech engines.</div>
<div>It uses a small subset of the <a href="https://developer.mozilla.org/en-US/docs/Web/API/Web_Speech_API" target="_blank">Web Speech API</a></div>
</div>
<a href="https://github.com/jetfontanilla/browser-text-to-speech" target="_blank">
<img src="public/github.png" alt="View Source on GitHub" width="64" height="64">
</a>
</div>
</div>
</body>
</html>