-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (31 loc) · 1.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
<!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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<h1 class="titulo">CÓDIGO SECRETO</h1>
<main class="main">
<section class="form box">
<form action="">
<label for="input-texto">Apenas letras minúsculas, sem acento</label>
<input class="text-input" type="text" name="input-texto" id="input-texto" placeholder="insira o texto aqui">
<input class="btn" type="submit" value="Criptografar" id="btn-cripto">
<input class="btn" type="submit" value="Descriptografar" id="btn-descripto">
</form>
</section>
<section class="msg box">
<h2 id="">Mensagem Criptografada:</h2>
<input class="text-input" type="text" id="msg"></input>
<input class="btn" type="submit" value="Copiar" id="btn-copy">
</section>
</main>
<footer class="rdp">
<h5>Daniela Gomes da Silva | 2022 | Alura - 1º Projeto Challenge One</h5>
</footer>
<script src="script.js"></script>
</body>
</html>