-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (40 loc) · 1.8 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
<!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</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/pc.css">
<link rel="stylesheet" href="css/tab-mobile.css">
</head>
<body>
<main class="main">
<section class="section-primaria">
<img class="logo" src="img/vector.png" alt="logo">
<form class="form-primario">
<textarea class="input-texto" id="" cols="10" rows="1" placeholder="Digite seu texto"></textarea>
<div class="caixa-form-primario">
<h6 class="informacao"><img src="img/exclamacao.png" alt="exclamacao"> Apenas letras minúsculas e sem acento.</h6>
<div class="botoes">
<button id="criptografar">Criptografar</button>
<button id="descriptografar">Descriptografar</button>
</div>
</div>
</form>
</section>
<section class="section-secundaria">
<div class="caixa">
<form class="caixa-texto"><!-- altera para classe caixa-texto-saida-->
<textarea class="mensagem">Nenhuma mensagem encontrada</textarea>
<!--fica invisivel na saida-->
<p class="paragrafo">Digite um texto que você deseja criptografar ou descriptografar.</p>
<!-- fica visivel na saida botao-copiar-->
<button class="invisivel">copiar</button>
</form>
</div>
</section>
</main>
</body>
</html>