-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 1.78 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Challenge Alura</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<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=Inter&display=swap"
rel="stylesheet"
/>
</head>
<body>
<script src="logica.js"></script>
<header>
<img src="logoAlura.png" alt="Logo da Alura" />
</header>
<main>
<section>
<!--Criação do formulário para entrada do texto.-->
<textarea
id="entradaTexto"
name="entradaTexto"
placeholder="Digite seu texto"
autofocus
required
cols="41"
rows="13"
></textarea>
<div class="textoAviso">
<h6>Apenas letras e numeros sem acento.</h6>
</div>
<div class="botoesPrincipais">
<button onclick="codifica()" class="btn-cripto" type="button">
Criptografar
</button>
<button onclick="descodifica()" class="btn-descripto" type="button">
Descriptografar
</button>
</div>
</section>
<section>
<textarea
cols="19"
rows="16"
id="saidaTexto"
name="saidaTexto"
placeholder="Digite seu texto"
>
</textarea>
</section>
</main>
<footer>
<a href="https://github.com/gs92dev" target="_blank">github</a>
<a href="https://www.linkedin.com/in/gs-dev/" target="_blank">linkedin</a>
</footer>
</body>
</html>