-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
125 lines (119 loc) · 3.34 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="index.css" />
<title>Text to Speech</title>
<link rel="icon" href="fav.ico">
<!-- HTML Meta Tags -->
<title>Text to Speech</title>
<meta
name="description"
content="Text-to-speech with AI-Powered natural sounding voices."
/>
<!-- Facebook Meta Tags -->
<meta
property="og:url"
content="https://arman-ali-khan-786.github.io/TexttoSpeech/"
/>
<meta property="og:type" content="website" />
<meta property="og:title" content="Text to Speech" />
<meta
property="og:description"
content="Text-to-speech with AI-Powered natural sounding voices."
/>
<meta
property="og:image"
content="https://arman-ali-khan-786.github.io/TexttoSpeech/assets/images/opengraph.webp"
/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="arman-ali-khan-786.github.io" />
<meta
property="twitter:url"
content="https://arman-ali-khan-786.github.io/TexttoSpeech/"
/>
<meta name="twitter:title" content="Text to Speech" />
<meta
name="twitter:description"
content="Text-to-speech with AI-Powered natural sounding voices."
/>
<meta
name="twitter:image"
content="https://arman-ali-khan-786.github.io/TexttoSpeech/assets/images/opengraph.webp"
/>
<!-- Meta Tags Generated via https://www.opengraph.xyz -->
</head>
<body>
<header>
<h1>Text to Speech</h1>
</header>
<main>
<div class="speechSection">
<div class="Voice-cnt">
<h2>Select Voice</h2>
<select id="voices"></select>
</div>
<div class="container">
<textarea name="" id="text" cols="50" rows="10"></textarea>
</div>
<div class="container">
<div>
<p>Volume</p>
<input
type="range"
min="0"
max="1"
value="1"
step="0.1"
id="volume"
/>
<span id="label-v" class="">1</span>
</div>
<div>
<p class="lead">Rate</p>
<input
type="range"
min="0.1"
max="10"
value="1"
id="rate"
step="0.1"
/>
<span id="label-r" class="">1</span>
</div>
<div>
<p>Pitch</p>
<input
type="range"
min="0"
max="2"
value="1"
step="0.1"
id="pitch"
/>
<span id="label-p" class="">1</span>
</div>
</div>
</div>
<div class="controls">
<div class="ctrl">
<button id="start">
<i class="start-icon"></i>
</button>
<button id="cancel">
<i class="cancel-icon"></i>
</button>
<button id="resume">
<i class="resume-icon"></i>
</button>
<button id="pause">
<i class="pause-icon"></i>
</button>
</div>
</div>
</main>
</body>
<script src="index.js"></script>
</html>