-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (68 loc) · 2.74 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.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=Inter:wght@200;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/media.css">
<script src="https://kit.fontawesome.com/ce33f802d1.js" crossorigin="anonymous"></script>
<title>Encriptador de texto</title>
</head>
<body>
<header>
<img src="assets/img/logo-alura.png" class="logo" alt="logo de Alura">
</header>
<main>
<section class="contenedor1 contenedores">
<textarea class="text-area"
id="textoEntrada"
cols="30"
rows="10"
placeholder="Ingrese el texto aquí"></textarea>
<div class="informacion">
<img class="informacion__icono" src="assets/img/Vector.svg" alt="icono de alerta">
<h6>Solo letras minúsculas y sin acentos</h6>
</div>
<div class="botones">
<button class="btn-encriptar" id="btnEncriptar" >Encriptar</button>
<button class="btn-desencriptar" id="btnDesencriptar" >Desencriptar</button>
</div>
</section>
<section class="contenedor2 contenedores">
<img id="muneco" src="assets/img/Muñeco.png" alt="persona buscando con lupa">
<h2 id="titulo" >Ningún mensaje fue encontrado</h2>
<p id="parrafo">Ingresa el texto que desees encriptar o desencriptar.</p>
<textarea
id="textoSalida"
cols="30"
rows="10"
class="mensaje hide"
placeholder="">
</textarea>
<div class="boton__caja2">
<button id="btnCopiar" class="btn-copiar hide">Copiar</button>
</div>
</section>
</main>
<footer>
<div class="enlaces">
<a href="https://github.com/albertsamo" class="enlace__github">
<i class="fa-brands fa-github"></i>
<h5>github</h5>
</a>
</div>
<div class="enlaces">
<a href="https://www.linkedin.com/in/jorge-s%C3%A1nchez-893076179/" class="enlace__linkedin">
<i class="fa-brands fa-linkedin"></i>
<h5>linkedin</h5></a>
</div>
</footer>
<script src="assets/js/script.js">
</script>
</body>
</html>