-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (44 loc) · 1.65 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="./img/cadeado.png" type="image/png">
<title>Decodificador</title>
</head>
<body>
<header>
<h1>Decodificador de Texto</h1>
</header>
<main>
<div class="container text-center">
<div class="row">
<div class="col">
<textarea class="textoUm" cols="30" rows="13" placeholder="Digite seu texto aqui..."></textarea>
<div class="btn-container">
<button type="button" onclick="btnCodificar()">Codificar</button>
<button type="button" onclick="btnDecodificar()">Decodificar</button>
</div>
<p class="aviso">⚠ Apenas letras minuculas e sem acento.</p>
</div>
<div class="col">
<textarea class="textoDois" cols="30" rows="13"
placeholder="Nenhuma mensagem encontrada!"></textarea>
<div class="btn-container">
<button class="botoes" onclick="copiar()">Copiar</button>
</div>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
<footer>
<p>© Codificador criado por Helen Formighieri - Todos os direitos reservados - 2022</p>
</footer>
</html>