-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (41 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<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</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main id="container">
<section class="principal">
<h1 class="logo">
<a href="https://www.alura.com.br" target="_blank" >
<img src="./svg/logo.svg" alt="logo-alura">
</a>
</h1>
<div class="form">
<textarea name="texto-principal" id="texto-principal" placeholder="Digite seu texto" maxlength="280"></textarea>
<div class="principal-inferior">
<p class="aviso"> <img src="./svg/icone-aviso.svg" alt="icone-aviso">
<span>Apenas letras minúsculas e sem acento.</span>
</p>
<button class="criptografar">Criptografar</button>
<button class="descriptografar">Descriptografar</button>
</div>
</div>
</section>
<section class="resposta">
<textarea name="texto-resposta" id="texto-resposta" readonly="readonly" ></textarea>
<div id="sobre-mensagem">
<img src="./svg/nenhuma-mensagem.svg" alt="nenhuma-mensagem">
<h2>Nenhuma mensagem encontrada</h2>
<p>Digite um texto que você deseja criptografar ou descriptografar.</p>
</div>
<button class="copiar remover">Copiar</button>
</section>
</main>
<script src="js/script.js"></script>
</body>
</html>