-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (42 loc) · 1.96 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https: //fonts.googleapis.com/css2? família= Lagosta &family= Roboto+Condensed:wght@700 & display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Decodificador de Texto</title>
</head>
<body>
<header>
<h1>Decodificador de Texto</h1>
</header>
<main>
<form>
<div class="text__box">
<label for="textInput"></label>
<textarea name="textInput" id="text__input" maxlength="1500" spellcheck="false" placeholder="Insira apenas letras minusculas e sem acento..." autocomplete="off" oninput="changeText(this.value)" required></textarea>
</div>
<div class="btn__crip">
<input type="button" value="Criptografar" id="btn__cripto" onclick="cripto()">
<input type="button" value="Descriptografar" id="btn__descripto" onclick="descripto()">
</div>
</form>
<div class="text__result">
<div class="out__box flipped">
<textarea id="out__text" disabled></textarea>
</div>
<div class="btn__copy">
<button id="btn__copy" onclick="copy()">Copiar</button>
</div>
</div>
</main>
<footer class="footer">
<a href="https://github.com/JanaGoncalo" target="_blank"><img src="imgs/github.gif" alt="GitHub"></a><p class="corpyright">Desenvolvido por Janaína Gonçalo - 2022</p><a href="https://linkedin.com/in/janagoncalo/" target="_blank"><img src="imgs/linkedin.gif" alt="Linkedin"></a>
</footer>
<script src="script.js" type="text/javascript"></script>
</body>
</html>