-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCA3.html
48 lines (41 loc) · 1.3 KB
/
CA3.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content=
"width=device-width, initial-scale=1.0">
<title>Text to Speech Converter</title>
<link rel="stylesheet" href="CA3.css">
</head>
<body>
<div class="container">
<div class="app-container">
<div class="headings-container">
<h1>Text to Speech Converter</h1>
<h3>Enter Text and Convert into Speech</h3>
</div>
<div class="interaction-container">
<textarea id="textToConvert"
placeholder="Enter text to convert into speech..."
id="" cols="35" rows="10"
class="text-control"></textarea>
<p class="error-para"></p>
<button class="btn" id="convertBtn">
Play Converted Sound
</button>
</div>
</div>
</div>
<footer>
<div class="main">
<marquee class="marq" bgcolor="#F4244C, #F57D4E"
direction="left" loop="">
<div>
All Copy Right © Reserved.
</div>
</marquee>
</div>
</footer>
<script src="CA3.js"></script>
</body>
</html>