forked from codex-iter/text-to-speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.html
41 lines (40 loc) · 1.2 KB
/
project.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
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PROJECT</title>
<link rel="stylesheet" href="CSS/pg3.css" />
</head>
<header>
<nav>
<ul class="main-nav">
<li><a href="main.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="project.html">Project</a></li>
<li><a href="team.html">Team</a></li>
</ul>
</nav>
</header>
<body>
<div id="app-container">
<h1>Text to speech</h1>
<div id="input-container">
<textarea
id="text-input"
placeholder="Type your text here!!!"
></textarea>
</div>
<div id="control-container">
<button id="lang-btn-hi">PLAY IN HINDI</button>
<button id="play-btn-m5x">PLAY IN -5x SPEED</button>
<button id="play-btn">Play</button>
<button id="play-btn-5x">PLAY IN 5x SPEED</button>
<button id="lang-btn-fr">PLAY IN FRENCH</button>
</div>
<div id="error-message"></div>
</div>
<script src="script.js"></script>
</body>
</html>