-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (54 loc) · 2.01 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
<!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">
<title>Decodificador de Texto</title>
<link rel="stylesheet" href="style/style.css">
<link rel="icon"
type="image/png"
href="images/typewriter.png" />
</head>
<body>
<!-- LOGO -->
<header>
<img src="images/logo.png" alt="Logo do site: letra A de Alura" id="logo">
</header>
<!-- SEÇÕES DE INSERIR O TEXTO E RESULTADO -->
<main>
<section id="solicitacao">
<h2 class="animaTypewriter">Decodificador de Texto!</h2>
<textarea
placeholder="Digite seu texto"
class="inputCriptografar"
id="texto"></textarea>
</section>
<section id="resultado">
<div id="secaoResultado">
<img src="images/lupa.png" alt="Personagem mágico olhando na lupa.">
<div class="texto">
Nenhuma mensagem encontrada
</div>
<textarea id="output-resultado" placeholder="Digite um texto que deseja criptografar ou descriptografar"></textarea>
<button id="copiar" class="botaoCopy" onclick="copiarTexto()">Copiar</button>
</div>
</section>
</main>
<!-- SESSÃO DOS BOTÕES -->
<section id="botoes">
<img src="images/aviso.png" alt="Alerta">
<p>Apenas letras minúsculas e sem acento.</p>
<button class="botao" id="criptografar" onclick="criptografa()">
Criptografar
</button>
<button class="botao" id="descriptografar" onclick="descriptografa()">
Descriptografar
</button>
</section>
<!-- RODAPÉ -->
<footer class="rodape"><p>Feito por Jerrayne Rodrigues - Challenge Encripter | Turma 3 | One Next Education - Alura/Oracle</p></footer>
<!-- SCRIPT -->
<script src="script/script.js"></script>
</body>
</html>