-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (64 loc) · 2.89 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
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content= "width=device-width, initial-scale=1.0">
<title>Talkie: Text-to-Speech-Converter</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="first_page">
<div class="title">
<h1>Welcome to Talkie</h1>
</div>
<div class="box">
<div class="pls">
<h3>Please enter your text and click on Speak button</h3>
</div>
<div class="text-box">
<textarea cols="20" id="input" rows="10" placeholder="Enter your text here"></textarea>
</div>
<div class="list">
<div class="label">
<label><strong>Select voice</strong></label>
</div>
<br>
<div class="selt">
<select aria-label="State" id="voiceList"></select>
</div>
</div>
<div class="speak">
<button id="speak">Speak</button>
</div>
<div class="pause">
<button id="pause"> Pause </button>
</div>
<div class="resume">
<button id="resume"> Resume</button>
</div>
</div>
</div>
<!--bootom navigation bar-->
<div class="bottom_nav">
<div class="follow">
<br><h3>FOLLOW ME ON</h3><br>
</div>
<div class="icons">
<a href="https://www.facebook.com/sarthak.wakchaure.737/" target="_blank" rel="noopener noreferrer" aria-label="fbk"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/SarthakWakchau3" target="_blank" rel="noopener noreferrer"><i class="fa fa-twitter" aria-label="twt"></i></a>
<a href="https://www.linkedin.com/in/sarthak-wakchaure-54653b211?lipi=urn%3Ali%3Apage%3Ad_flagship3
_profile_view_base_contact_details%3BbH5LmB1ARgKchLZpfvlgVg%3D%3D" target="_blank" rel="noopener noreferrer" aria-label="lin"><i class="fa fa-linkedin"></i></a>
<a href="https://www.instagram.com/?hl=en" target="_blank" rel="noopener noreferrer"><i class="fa fa-instagram" aria-label="ins"></i></a>
</div>
<div class="my_create">
<br><h3>PROJECT BY</h3>
<h4>Sarthak Wakchaure !</h4>
<div class="contact_me">
<h4>Mobile:- 9850852297</h4>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>