-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (49 loc) · 2.16 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
<!DOCTYPE html>
<html lang="pt=br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title > Decodificador One T5 </title >
<link rel="icon" href="teclado-png.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style2.css">
</head>
<body>
<div class="caixa">
<section class="container1">
<header class="logo">
<img src="logo-a-png.png">
</header>
<main class="digiteTexto">
<form>
<label></label>
<input type="text" id="texto" name="texto" placeholder="Digite seu texto">
<div class="alerta">
<i><span id="text-alerta"><img id="img-alerta" src="alerta-png.png">Apenas letras minúsculas e
sem acento.</span></i>
</div>
</form>
<div class="botoes">
<button onclick="criptografar()" id="one">Criptografar</button>
<button onclick="descriptografar()" id="two">Descriptografar</button>
</div>
</main>
</section>
<section id="apareceTexto1" class="apareceTexto">
<div class="container2">
<img id="foto" src="mulher-png.png">
<h2 id="text-h2">Nenhuma mensagem<br> encontrada</h2>
<p id="text-p">Digite um texto que você deseja<br> criptografar ou descriptografar.</p>
<textarea disabled name="" id="text-cripto"></textarea>
<button id="copiar" onclick="copiar()">Copiar</button>
</div>
</section>
</div>
<footer>
<div class="rodape">
<h1 class="nome">Claudio Silva</h1>
</div>
<script src="script.js"></script>
</footer>
</body>
</html>