-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (50 loc) · 2.17 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
<!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="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="img/hacker.png" type="image/x-icon" />
<title>Decodificador</title>
</head>
<body>
<header>
<h1 class="titulo_principal">DECODIFICADOR DE TEXTO</h1>
<img src="img/logoAlura.png" alt="Logo Alura" class="logo">
</header>
<main class="main">
<section>
<textarea class="input-texto" cols="40" rows="6" placeholder=" Digite seu texto"></textarea>
<div>
<h6 class="informacoes"> Apenas letras minúsculas e sem acento.</h6>
</div>
<div class="botoes">
<button class="encriptar" onclick="btnEncriptar()">
Criptografar
</button>
<button class="desencriptar" onclick="btnDesencriptar()">
Descriptografar
</button>
</div>
</section>
<section>
<textarea class="mensagem" cols="18" rows="8"
placeholder=" Nenhuma mensagem encontrada. Digite um texto que você quer criptografar ou descriptogafar."></textarea>
<div class="botoes-copy">
<button class="copy" onclick="btnCopiar()">
Copiar
</button>
</div>
</section>
</main>
<footer class="author">
<a href="https://www.linkedin.com/in/maria-karolyne-lopes-pinto-830311145/" target="_blank"><img src="img/linkedin.png" alt="icone do linkedin"></a>
<a href="https://github.com/KarolyneDev" target="_blank"><img src="img/github.png" alt="icone do github"></a>
<p class="desenvolvido">Desenvolvido por Maria Karolyne</p>
<p class="copyright">©copyright</p>
</footer>
<script src="script.js"></script>
</body>
</html>