-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 993 Bytes
/
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
<!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="style.css">
</head>
<body>
<div class="display-1">
<nav>
<img src="logo.jpeg" width="60px">
</nav>
<textarea placeholder="digite um texto" id="text"></textarea>
<p>? Nao use acento nem letras maiusculas</p>
<div class="display-1-1">
<button class="bt1" onclick="criptografar()">Criptografar</button>
<button class="bt2" id="bt2" style="border: 1px solid rgb(27, 27, 100);" onclick="descriptografar()">Descriptografar</button>
</div>
</div>
<div class="display-2" id="display-2">
<p id="resultado">Nenhuma mensagem carregada</p>
</div>
</body>
<script src="script1.js"></script>
</html>