-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (52 loc) · 2.05 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 name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/style.css">
<title>Decodificador</title>
<link rel="stylesheet" href="./styles/tablete.css">
</head>
<body>
<!-- CABECALHO -->
<header class="cabecalho">
<img src="./assets/Logo.png" class="cabecalho__img__logo" alt="Logo da Alura">
</header>
<main class="main__container">
<div class="container__div">
<!-- CAIXA DE TEXTO -->
<div class="textare__div">
<textarea name="mensagem" id="textoOriginal" placeholder="Digite seu texto..."></textarea>
<div class="container__aviso">
<img src="./assets/Vector.png" alt="aviso">
<p>Apenas letras minuscúlas e sem acento.</p>
</div>
<!-- BOTOES -->
<div class="bnt__container">
<button class="first__bnt" id="bnt__criptografar"><strong>CRIPTOGRAFAR</strong></button>
<button class="second__bnt" id="bnt__descriptografar"><strong>DESCRIPTOGRAFAR</strong></button>
</div>
</div>
<div>
<!-- IMG DO ANJO -->
<img src="./assets/anjo23.png" alt="imagem do anjo" class="img__anjo" id="imgAnjo">
<!-- BARRA DE RESULTADO -->
<div class="resultado__container">
<p id="resultado"></p>
<!-- BOTOES COPIA/COLA -->
<div class="bnt__container">
<button class="first__bnt" id="btnCopia"><strong>COPIAR</strong></button>
</div>
</div>
</div>
</div>
</main>
<footer>
<div>
<img src="./assets/desenvolvido por gabriel Corrêa.png" alt="nome do criador do site Gabriel">
</div>
</footer>
<!-- LINK JAVASCRIPT -->
<script src="script.js"></script>
</body>
</html>