-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (43 loc) · 1.43 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
<!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>Decript</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class= "menu-principal">
<div class = "header1" >
<div class= "logo">
<img src="./img/logo.png"/>
</div>
</div>
</header>
<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="btn1" type="submit" value="copiar" id="btn-copy">
</section>
</main>
<script src="script.js"></script>
</body>
<section class = "footer">
<div class = "conteiner">
<p class = "Ass">Powered by: Lucas Dias</p>
<a href="https://github.com/LucasDiasA" target="_blank" > <img class="git" src ="./img/GIT.png"> <\a>
</div>
</div>
</section>
</html>