-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (49 loc) · 1.85 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
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Encriptador de Texto</title>
<!-- Estilo CSS -->
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<body id="contenedor-ppal">
<header>
<img class="logo" src="./images/Logo Alura.png" alt="Logo de Alura">
<h1>Encriptador de texto</h1>
</header>
<main>
<section class="seccion_input">
<textarea id="texto_input" class="text-area" rows="5" cols="50" placeholder="Ingrese el texto aquí" autofocus></textarea>
<div>
<h6 class="info">Sólo letras minúsculas, sin acentos, ni caracteres especiales.</h6>
</div>
<div class="botones">
<button id="btn_encriptar" type="button" onclick="encriptar();">Encriptar</button>
<button id="btn_desencriptar" type="button" onclick="desencriptar();">Desencriptar</button>
</div>
</section>
<section class="seccion_output">
<textarea id="texto_output" class="text-area" rows="5" cols="50"></textarea>
<div>
<button id="btn_copiar" type="button" onclick="copiar();">Copiar en input</button>
</div>
</section>
</main>
<footer>
<p class="developer">Desarrollado por <span>David Barrios Escobar</span> 2024</p>
<a href="http://www.linkedin.com/in/david-barrios-escobar-fust-meceng" target="_blank">
<img class="icono1" src="./images/Linkedin.png" alt="Logo LinkedIn">
</a>
</footer>
<!-- Bloque para efecto velo (Overlay): -->
<div id="overlay"></div>
<!-- Mensaje Pop-up: -->
<div id="popup" onclick="offMsgPopUp('');">
<div id="popup_banner"> Encriptador Alura - ONE </div>
<p id="popup_msg"></p>
</div>
<!-- Script: -->
<script src="./app.js"></script>
</body>
</html>