-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (41 loc) · 1.75 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title>Encriptador Online👨🏻💻</title>
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="/css/normalize.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,700&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="main.js" defer></script>
</head>
<body>
<main class="main">
<h1 class="titulo">Encriptador y desencriptador de texto📄🔑</h1>
<section class="form-box">
<span>
<img src="./assets/iconp.svg"></img>Solo letras minúsculas y sin acentos.
</span>
<form action="">
<input class="text-input" type="text" name="input-texto" id="input-texto" placeholder="Ingrese el texto aqui">
<input class="btn" type="submit" value="Encriptar!" id="btn-encriptar">
<input class="btn" type="submit" value="Desencriptar!" id="btn-desencriptar">
</form>
</section>
<section class="msg-box">
<h2 id="msg-encriptado">Mensaje encriptado:</h2>
<input class="text-input" type="text" id="msg"></input>
<input class="btn" type="submit" value="Copiar" id="btn-copy">
</section>
<!-- Footer site -->
<footer class="footer-site">
<span>Alura Challenge | Oracle One | ©Yhonatan Peguero 2022.</span>
<a href="https://github.com/YhonaPeguero" target="_blank">Github</a>
<a href="https://www.linkedin.com/in/yhonatan-peguero/" target="_blank">Linkedin</a>
</footer>
</main>
</body>
</html>