-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (57 loc) · 2.45 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
66
67
68
69
70
<!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 textos</title>
<link rel="stylesheet" href="style/style.css">
<link rel="shortcut icon" href="imagens/6845422.png" type="image/x-icon">
</head>
<body>
<div id="interface">
<header id="cabecalho">
<div>
<a href="index.html"><img id = "icone" src="imagens/6845422.png" width="30" height="30" align = "left"></a>
<a href="index.html"><h1>  Decodificador de textos</h1></a>
</div>
</header>
<section>
<div>
<!--Aréa de digitar o texto para criptografar ou descriptografar-->
<textarea name="texto" id="texto" cols="30" rows="10" placeholder="Digite seu texto" autofocus></textarea>
<p>ATENÇÃO: Somente palavras sem acento.</p>
<!--Botões de criptografar e descriptografar-->
<div id="botoes">
<button id="botao1">Criptografar</button>
<button id="botao2">Descriptografar</button>
</div>
</div>
</section>
<aside class="bloco-resultado">
<!--Área na qual aparece o texto criptografado ou descriptografado-->
<textarea name="resultado" id="resultado" cols="50" rows="50" readonly></textarea>
<!--Imagem e frases que aparecem quando não ainda não digitou nenhum texto-->
<div id="img"><img src="imagens/pngwing.com.png" width="200" height="300" id="img-detetive"></div>
<div id="nenhumamensagem">
<h3>Nenhuma mensagem <br/>encontrada</h3>
<p>Digite um texto que você deseja<br/> criptografar e descriptografar</p>
</div>
<!-- Botão de copiar o texto -->
<div id="commensagem">
<button id="copy">Copiar</button>
</div>
</aside>
<footer id="rodape">
<!--Informações do rodapé-->
<p>Desenvolvido por @thaynaalvesc
<br>
<a href="https://www.linkedin.com/in/thaynaalvesc/" target="_blanck"><img src="imagens/174857.png" width="26" height="26"></a>
<a href="https://github.com/thaynaalvesc" target="_blanck"><img src="imagens/733553.png" width="26" height="26"></a>
<br>
Um desafio do Oracle Next Education e Alura</p>
</footer>
<script src="scripts/main.js"></script>
</div>
</body>
</html>