-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (87 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="./css/app.css" />
<link rel="stylesheet" href="./css/materialize.min.css" />
<link rel="shortcut icon" href="./images/favi.ico" type="image/x-icon" />
<script src="https://kit.fontawesome.com/df9a35c61a.js"></script>
<title>Voice my text</title>
<!-- =========================================SEO TAGS=================================== -->
<meta name="title" content="Voice My Text" />
<meta
name="description"
content="A web app created by @calebdeji06 that translates your text to a speech"
/>
<meta
name="keywords"
content="tts, window.speechSynthesis,calebdeji project, ogunwale pelumi caleb,calebdeji"
/>
<meta name="robots" content="index, follow" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- ------------------------------------------------------------ -->
<meta name="language" content="English" />
<!-- ====================== customize ================================ -->
<meta name="theme-color" content="#26a69a" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="#26a69a" />
<meta name="apple-mobile-web-app-title" content="Voice My Text" />
<meta name="msapplication-TileColor" content="#26a69a" />
<!-- =================================================================== -->
</head>
<body id="body">
<main>
<header>
<h2>Voice my Text</h2>
<div class="switch">
<label for="">Off</label>
<label>
<input type="checkbox" id="dark_mode" />
<span class="lever"></span>
</label>
<label for="">Dark Mode</label>
</div>
</header>
<form action="javascript:void(0)" method="post" id="form_main">
<div class="input-field">
<textarea id="my_text" class="materialize-textarea"></textarea>
<label for="my_text">Type in your text</label>
</div>
<div class="input-field">
<select id="voice_option"> </select>
<label>Choose the type of voice you want</label>
</div>
<div class="input-field buttons-customized">
<a class="waves-effect waves-light btn" id="generate_voice"
>Generate Voice</a
>
<a class="waves-effect waves-light btn" id="clear_text">Clear Text</a>
</div>
</form>
</main>
<footer>
<h5>Follow me on</h5>
<div class="social-media">
<a href="https://twitter.com/calebdeji06"
><i class="fab fa-twitter"></i
></a>
<a href="https://github.com/calebdeji"><i class="fab fa-github"></i></a>
<a href="https://instagram.com/calebdeji06">
<i class="fab fa-instagram"></i
></a>
</div>
<p>
Developed by
<a href="https://calebdeji.github.io" target="_blanc">Calebdeji😉</a>
</p>
</footer>
<!--============================= JS section ================================-->
<script src="./js/jquery-2.1.1.min.js"></script>
<script src="./js/materialize.min.js"></script>
<script src="./js/app.js"></script>
<!-- ======================================================================= -->
</body>
</html>