-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (58 loc) · 2.57 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
<!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="Estilo/reset.css">
<link rel="stylesheet" href="Estilo/style.css">
<script src="js/script.js" defer></script>
<title>Codificador/Decodificador de texto</title>
</head>
<body>
<!--Titulo com logo da Alura-->
<header>
<a href="https://www.alura.com.br" class="logo" target="_blank"><img src="Imagens/Logo Alura.png" alt="Logo da Alura"></a>
<h1>Codificador/ Decodificador de texto</h1>
</header>
<main>
<!--Entrada do texto a ser criptografado-->
<section id="entrada">
<textarea name="entrada-texto" id="entrada-texto" placeholder="Digite o seu texto aqui..."></textarea>
<p>
<img src="https://img.icons8.com/ios-glyphs/30/000000/box-important--v1.png" class="icon1"/>Apenas letras minúscula sem acento!
</p>
<div class="botoes">
<button id="cifrar">
Criptografar
</button>
<button id="decifrar">
Descriptografar
</button>
</div>
</section>
<!--Saida do texto criptografado-->
<section id="saida">
<img src="Imagens/detetive.svg" class="img-detetive" alt="Detetive procurando com a Lupa">
<img src="Imagens/nenhumamensagem.png" id="nenhumamensagem" alt="Nenhuma mensagem encontrada, digite sua mensagem!">
<textarea name="resposta" id="texto-decifrado" placeholder="Nenhuma mensagem a ser exibida." disabled readonly></textarea>
<h2 id="copy">Texto copiado!</h2>
<button id="botao-copiar" disabled>Copiar texto</button>
</section>
</main>
<footer>
<p>© Desenvolvido por Jonathan Oliveira</p>
<div class="icones">
<a href="https://www.linkedin.com/in/jonathansoliveira77/" target="_blank">
<img src="https://img.icons8.com/color/48/000000/linkedin.png"/>
</a>
<a href="https://www.instagram.com/jonatthan.o" target="_blank">
<img src="https://img.icons8.com/fluency/48/000000/instagram-new.png"/>
</a>
<a href="https://github.com/jonathansoliveira" target="_blank">
<img src="https://img.icons8.com/material-sharp/48/000000/github.png"/>
</a>
</div>
</footer>
</body>
</html>