-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
56 lines (49 loc) · 2.81 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SpeechMaster</title>
<meta name="description" content="Grammar">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel=stylesheet href="styles/style.css">
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300' rel='stylesheet' type='text/css'>
<script src="js/app-config.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/nimble-raw.js"></script>
<script src="js/main.js"></script>
<script src="js/function.js"></script>
<script src="js/recorder-index.js"></script>
<script src="js/recorder-main.js"></script>
<script src="js/recorder-worker.js"></script>
</head>
<body>
<!-- Add your site or application content here -->
<header>
<h1 class="noMargin" id="title">SpeechMaster</h1>
</header>
<!-- Recording screen -->
<div id="recording-wrapper" class="centered">
<div id="mic-wrapper" class="centered">
<img src="assets/images/mic-icon.svg" alt="Microphone oval icon" id="oval" class="centered">
<img src="assets/images/mic-icon-mic.svg" alt="Microphone icon" id="mic" class="centered">
</div>
<p id="status-message">Click to start recording</p>
</div>
<!-- Highlighting screen -->
<div class="results-page">
<div class="icon">
<img id="retry-button" src="assets/images/retry-icon.png" alt="Retry icon">
</div>
<div id="highlighting-section" class="results-section">
<!-- Input -->
<p id="output">Bespoke aesthetic mlkshk, post-ironic umami <span class="highlighted">hella</span> <span class="highlighted">plaid</span> selfies. Synth hoodie quinoa, scenester cronut pork belly put a bird on it trust fund semiotics butcher occupy slow-carb tilde Williamsburg Portland. Banh mi Thundercats ennui raw denim <span class="highlighted">listicle</span>. Chia bitters messenger bag paleo hashtag lo-fi migas PBR, banjo vegan butcher meh hoodie. Swag Austin kitsch fixie twee. Gentrify aesthetic keffiyeh, Blue Bottle sartorial butcher street art pickled quinoa ugh gluten-free meggings stumptown try-hard. Hashtag normcore next level irony distillery taxidermy, fanny pack master cleanse artisan Vice squid jean shorts Banksy.</p>
<img id="down-arrow" src="assets/images/down-arrow.svg" alt="Down arrow">
</div>
<a name="analytics-section"/>
<div id="analytics-section" class="results-section">
<!-- Analytics section -->
<img id="stats" src="assets/images/stats.svg" alt="Statistics">
</div>
</div>
</body>
</html>