-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (73 loc) · 3.58 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
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Encriptador DDA es una herramienta de encriptación de datos en español desarrollada por Daniel Dans Abelenda. Protege tus datos con nuestro servicio fácil de usar y seguro.">
<meta name="keywords" content="encriptación, encriptador, seguridad, datos, encriptador de datos, herramienta encriptación, Daniel Dans Abelenda">
<!-- Icon -->
<link rel="icon" type="image/png" href="imagenes/dda_logo.png">
<!-- Google Fonts -->
<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:wght@300;400;700;900&display=swap" rel="stylesheet">
<!--Estilos-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/responsive.css">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
crossorigin="anonymous" referrerpolicy="no-referrer">
<!-- Título Página -->
<title> Encriptador DDA | Challenge </title>
</head>
<body>
<main class="principal">
<section class="input-side">
<header class="logo">
<img width="" src="imagenes/dda_logo.png" alt="logo de alura">
</header>
<div class="formulario">
<textarea class="input" placeholder="Ingrese el texto aquí" id="input" cols="30" rows="10"></textarea>
<div class="contenedor-advertencia">
<img src="imagenes/exclamation-icon.png" alt=" icono de exclamacion">
<p class="texto-advertencia">Utilizar letras minúsculas y sin acento</p>
</div>
<div class="contenedor-botones">
<button class="encriptar-btn">Encriptar</button>
<button class="desencriptar-btn">Desencriptar</button>
</div>
</div>
</section>
<section class="output-side">
<textarea class="output" id="output"></textarea>
<div class="contenedor-mensaje">
<div class="imagen-hombre">
<img src="imagenes/man.png" alt="hombre curioso">
</div>
<p class="texto-notificacion">
Ningún mensaje fue encontrado
</p>
<p class="texto-instrucciones">
Ingresa el texto que desees encriptar o desencriptar
</p>
</div>
<button class="clipboard">Copiar</button>
</section>
</main>
<footer class="footer">
<p> © Daniel Dans Abelenda - Alura Challenge |
<a target="_blank" rel="noopener" href="https://www.linkedin.com/in/ddansabelenda/"><i
class="fa-brands fa-linkedin"></i></a>
<a target="_blank" rel="noopener" href="https://github.com/DDansAbelenda?tab=repositories"><i
class="fa-brands fa-github"></i></a>
</p>
<!--Notificación-->
<div class="notificacion-container" id="notificacionContainer">
<div class="notificacion" id="notificacion"></div>
</div>
</footer>
<script src="main.js"></script>
</body>
</html>