-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 2.43 KB
/
index.html
File metadata and controls
56 lines (55 loc) · 2.43 KB
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>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<link href="https://api.fontshare.com/v2/css?f[]=nunito@400&f[]=melodrama@500&display=swap" rel="stylesheet">
<link href="https://api.fontshare.com/v2/css?f[]=nunito@400&f[]=melodrama@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<div class = "topLeft bubble"></div>
<div class = "bottomRight bubble"></div>
<section>
<div class = "topText">
<p class = "title">Class Companion</p>
<h3 class = "bodyText">Convert your lectures into notes using real-time speech-to-text technology</h3>
</div>
<div class = "scrollDiv">
<h3 class = "scrollText">Scroll Down!</h3>
</div>
</section>
<section>
<div class = "listenerDiv">
<div class = "buttonDiv">
<button href="none" id="voiceButton" class="voiceButton">Start Listening!</button>
<button href="none" id="printButton">Download PDF</button>
</div>
<div class = "textBoxContainer">
<div class = "rawContainer">
<div class = "headingBar">
<h5 class = "rawLabel">Raw Speech:</h5>
<button id="deleteButtonRaw"><span class="material-symbols-outlined delete">delete</span></button>
</div>
<div id = "rawTextDiv" class="rawTextDiv">
<p id = "rawText"></p>
</div>
</div>
<div class = "notesContainer">
<div class = "headingBar">
<h5 class = "notesLabel">Your Notes:</h5>
<button id="deleteButtonNotes"><span class="material-symbols-outlined delete">delete</span></button>
</div>
<div id = "notesTextDiv" class="notesTextDiv">
<p id = "notesText"></p> <!-- After ChatGPT makes the notes, add the notes here -->
</div>
</div>
</div>
</div>
</section>
</div>
<script src="dist/app.js"></script>
</body>
</html>