-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (33 loc) · 920 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
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html>
<head>
<title>Time Report</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="style.css">
<link rel="Shortcut Icon" href="./ico/clock.ico" type="image/x-icon" />
</head>
<body>
<h1>Clock Speaker</h1>
<p id="date"></p>
<div id="time"></div>
<div>
<div id="pixblock_horizontal" style="left:0px;"></div>
<div id="pixblock_vertical" style="top:-100px;"></div>
</div>
<div id="control">
<div>
<button onclick="start()">Start</button>
<button onclick="stop()">Stop</button>
<button id = "mute" onclick="Mute()">Mute</button>
</div>
<form>
<select id="voices" ></select>
<div>
<label for="rate">Rate</label><input type="range" min="0.5" max="4" value="1" step="0.1" id="rate">
<div class="rate-value">1</div>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>