-
Notifications
You must be signed in to change notification settings - Fork 273
/
explore.html
37 lines (33 loc) · 1.08 KB
/
explore.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
<!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" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>Lab 5 - Party Horn</title>
<!-- Main Stylesheet & Scripts -->
<link rel="stylesheet" href="assets/styles/global.css" />
<script src="./assets/scripts/explore.js" type="module"></script>
</head>
<body>
<header>
<nav>
<a href="expose.html" title="Go to expose page">Pt 1. Expose</a>
</nav>
</header>
<main>
<section id="explore">
<header>
<h2>Explore - Speech Synthesis</h2>
</header>
<img src="assets/images/smiling.png" alt="Smiling face" />
<textarea name="text-to-speak" id="text-to-speak" rows="10" placeholder="Text to speak here"></textarea>
<select name="voice" id="voice-select">
<option value="select" disabled selected>Select Voice:</option>
</select>
<button>Press to Talk</button>
</section>
</main>
</body>
</html>