-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 865 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Conversor para texto biônico</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/style/style.css">
</head>
<body>
<div class="container">
<h1>Conversor de Texto Bionico</h1>
<form>
<textarea id="texto" placeholder="Digite o texto a ser convertido"></textarea>
<button type="button" onclick="converter()">Converter</button>
</form>
<div class="resultado">
<p id="bionico"></p>
<button id="copy-btn" onclick="copiar()">Copiar</button>
</div>
<button id="clear-btn">Limpar</button>
</div>
<div id="content"></div>
<script src="./assets/script/detection.js"></script>
<script src="./assets/script/script.js"></script>
</body>