-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1.32 KB
/
index.html
File metadata and controls
38 lines (32 loc) · 1.32 KB
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
<!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">
<link href="https://fonts.googleapis.com/css2?family=Acme&family=PT+Sans+Narrow:wght@400;700&display=swap"
rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<main class="main">
<div class="form box">
<form action="">
<h3 id=""><b>Apenas letras minúsculas sem acento</b></h3>
<input class="text-input" type="text" name="input-texto" id="input-texto" placeholder="Insira os dados">
<input class="btn" type="submit" value="CRIPTOGRAFAR!" id="btn-criptografar">
<input class="btn" type="submit" value="DESCRIPTOGRAFAR!" id="btn-descriptografar">
</form>
</div>
<div class="msg box">
<h3 id=""><b>Mensagem criptografada</b></h3>
<input class="text-input" type="text" id="copiar-text"></input>
<input class="btn" type="submit" value="COPIAR" id="btn-copy">
</div>
</main>
<script src="criptografar.js"></script>
<footer>
<p>Projeto: Oracle One & Alura/Desenvolvido por Alexandre Chaves</p>
</footer>
</body>
</html>