-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Conversor de Texto para Fala</title>
<link rel="stylesheet" href="styles.css" />
<script src="scripts.js" defer></script>
</head>
<body>
<div class="container">
<h1>Conversor de <span>Texto</span> para <span>Fala</span></h1>
<p>Digite um texto ou envie algum arquivo para ser lido:</p>
<div id="entrada-de-conteudo">
<textarea
placeholder="Digite alguma coisa..."
id="entrada-de-texto"
></textarea>
<div class="enviar">
<label for="upload-arquivo" id="arquivo-label">Enviar arquivo</label>
<input type="file" id="upload-arquivo" accept=".txt" />
</div>
</div>
<div class="acoes">
<div class="acao-box">
<p>Selecione a voz:</p>
<select id="selecao-voz"></select>
</div>
<div class="acao-box">
<p>Clique para ouvir:</p>
<button id="ouvir-btn">Ouvir</button>
</div>
<div class="acao-box">
<p>Obtenha um arquivo do conteúdo:</p>
<button id="baixar-texto-btn">Baixar Texto</button>
</div>
</div>
</div>
</body>
</html>