-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1.68 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
<!DOCTYPE html>
<html lang="es">
<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 rel="stylesheet" href="styles/styles.css">
<title>Encriptador</title>
</head>
<body>
<header>
<nav>
<a href="https://www.aluracursos.com/" target="_blank" rel="noopener noreferrer"><img src="./assets/Logo.svg" alt="Logo de Alura"></a>
</nav>
</header>
<main>
<section id="text_container">
<textarea name="text" id="text" cols="30" rows="5" placeholder="Ingrese el texto aquí"></textarea>
<div id="btns_container">
<div id="info_container">
<img src="./assets/info icon.svg">
<p id="info_detail">Solo letras minúsculas y sin acentos</p>
</div>
<div id="buttons">
<input id="encrypt_btn" type="button" value="Encriptar">
<input id="decrypt_btn" type="button" value="Desencriptar">
</div>
</div>
</section>
<section>
<div id="msg_enc_dec">
<img src="./assets/not found.svg">
<h4 id="encrypted_text">Ningún mensaje fue encontrado</h4>
<h5>Ingresa el texto que desees encriptar o desencriptar.</h5>
</div>
</section>
</main>
<footer>
<h4>Creado por Noelia Elizabeth Núñez Mac Leod</h4>
<a href="https://github.com/Noelia-Elizabeth" target="_blank"><img src="./assets/Logo GitHub.png"></a>
</footer>
<script src="./js/index.js"></script>
</body>
</html>