-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
20 lines (20 loc) · 843 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transcritor de áudio</title>
<link rel="stylesheet" href="src/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<h2>Transcritor de áudio</h2>
<p id="subtitulo">Pressione o botão <b>abaixo</b> enquanto fala para que o texto seja transcrito posteriormente.</p>
<textarea id="textarea" placeholder="O texto será exibido aqui..." readonly></textarea>
<button id="speak">
<i class="fa-solid fa-microphone"></i> FALE PARA GERAR O TEXTO
</button>
<script src="src/script.js"></script>
</body>
</html>