-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (85 loc) · 3.26 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
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<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" />
<title>Alura Encriptador</title>
<!-- Reset CSS -->
<link rel="stylesheet" href="./assets/css/reset.css" />
<!-- Mis estilos -->
<link rel="stylesheet" href="./assets/css/style.css" />
<!-- 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=Inter:wght@300;400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Header -->
<header>
<img src="./assets/img/logo.png" alt="" />
</header>
<!-- Cuerpo -->
<main>
<!-- Seccion 1 -->
<section class="contenedores grid-item-1">
<!-- Texto de Entrada -->
<textarea
name="textoEntrada"
id="textoEntrada"
placeholder="Escribe tu texto aquí"
></textarea>
<div class="advertencia">
<img src="./assets/img/exclamation.png" />
Solo letras minúsculas y sin acentos
</div>
<!-- Contenedor de botones -->
<div class="cajaBotones">
<!-- Encriptar -->
<button id="btnEncriptar" class="botones">Encriptar</button>
<!-- Desencriptar -->
<button id="btnDesencriptar" class="botones">Desencriptar</button>
</div>
</section>
<!-- Seccion 2 -->
<section class="contenedores grid-item-2">
<!-- Imagen muñeco -->
<img src="./assets/img/muneco.png" width="200" alt="" id="muneco" />
<!-- Titilo sección 2 -->
<h1 id="titulo">Ningún mensaje fue encontrado</h1>
<!-- Parrafo -->
<p id="parrafo">Ingresa el texto que desees encriptar o desencriptar.</p>
<!-- Texto Aréa -->
<textarea
name="textoSalida"
id="textoSalida"
placeholder="Texto encriptado"
class="hide"
disabled
></textarea>
<!-- Boton Copiar -->
<button id="btnCopiar" class="botones hide">Copiar</button>
</section>
</main>
<!-- Footer -->
<footer>
<!-- Copy -->
<h1>Copyright ©</h1>
<!-- Alumno -->
<h1>Alumno Alura</h1>
<!-- redes sociales -->
<div class="red-social">
<a href="https://github.com/">
<img src="./assets/img/github.svg" alt="" />
</a>
<a href="https://www.linkedin.com/">
<img src="./assets/img/linkedin.svg" alt="" />
</a>
</div>
</footer>
<script src="./assets/js/script.js"></script>
</body>
</html>