-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 959 Bytes
/
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
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Simple Alarm Clock</title>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<header>
<h1>Simple Alarm Clock</h1>
</header>
<body>
<!--<div>-->
<!--<button onclick="start()">Record</button>-->
<!--<span id="recognitionResult">result</span>-->
<!--</div>-->
<div>
<h3>Click record and speak your personal wake up sound!</h3>
<div>
<button onclick="start()">Record</button>
<input type="input" name="text" id="sound" value="" readonly>
<button onclick="speak()">Play Back</button>
</div>
<div>
<label for="setTime">Alarm Time: </label>
<input type="time" name="time" id="setTime" value="07:00">
<button onclick="setAlarm()" id="set">Set</button>
</div>
<div id="error"></div>
</div>
</body>
<script src="./speechRecognition.js"></script>
<script src="./speechSynthesizer.js"></script>
</html>