You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
HTML
40 lines
1.1 KiB
HTML
6 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||
|
<meta name="viewport" content="width=device-width">
|
||
|
|
||
|
<title>Speech synthesiser</title>
|
||
|
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
<!--[if lt IE 9]>
|
||
|
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||
|
<![endif]-->
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>Speech synthesiser</h1>
|
||
|
|
||
|
<p>Enter some text in the input below and press return to hear it. change voices using the dropdown menu.</p>
|
||
|
|
||
|
<form>
|
||
|
<input type="text" class="txt">
|
||
|
<div>
|
||
|
<label for="rate">Rate</label><input type="range" min="0.5" max="2" value="1" step="0.1" id="rate">
|
||
|
<div class="rate-value">1</div>
|
||
|
<div class="clearfix"></div>
|
||
|
</div>
|
||
|
<div>
|
||
|
<label for="pitch">Pitch</label><input type="range" min="0" max="2" value="1" step="0.1" id="pitch">
|
||
|
<div class="pitch-value">1</div>
|
||
|
<div class="clearfix"></div>
|
||
|
</div>
|
||
|
<select>
|
||
|
|
||
|
</select>
|
||
|
</form>
|
||
|
|
||
|
<script src="speech.js"></script>
|
||
|
</body>
|
||
|
</html>
|