-
Notifications
You must be signed in to change notification settings - Fork 3
/
howtouse.html
44 lines (44 loc) · 1.57 KB
/
howtouse.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to Use</title>
<link rel="stylesheet" href="howtousecss.css">
</head>
<body>
<header>
<h1>How to Use</h1>
</header>
<section class="content">
<div class="step">
<div class="step-number">Step 1</div>
<div class="step-description">
<h2>Record Your Audio</h2>
<p>Click the "Record" button to start recording your speech. Allow microphone permissions if prompted.</p>
</div>
</div>
<div class="step">
<div class="step-number">Step 2</div>
<div class="step-description">
<h2>Stop Recording</h2>
<p>Click the "Stop" button to stop recording when you finish speaking.</p>
</div>
</div>
<div class="step">
<div class="step-number">Step 3</div>
<div class="step-description">
<h2>Upload Audio</h2>
<p>Alternatively, you can click the "Upload" button to select an audio file from your device.</p>
</div>
</div>
<div class="step">
<div class="step-number">Step 4</div>
<div class="step-description">
<h2>Get Text Output</h2>
<p>After recording or uploading, click the "Submit" button to convert your speech to text. The text will appear in the text box.</p>
</div>
</div>
</section>
</body>
</html>