-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (45 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
63 lines (45 loc) · 1.96 KB
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
<html lang="es">
<head>
<title>Encriptador de texto</title>
<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="styless.css">
<link rel="stylesheet" href="reset.css">
</head>
<body>
<header>
<img src="Logo (1).png" alt="Logo Alura"> </header>
<main>
<section class="section1">
<div class="alert-minusculas"><p>Solo letras minúsculas</p></div>
<textarea class="area" placeholder="Ingrese el texto aquí" ></textarea>
<div class="botones">
<input type="button" class="btn-encriptar" value="Encriptar">
<input type="button" class="btn-desencriptar" value="Desencriptar">
<div class="Copiar"><input type="button" class="btn-copiar" value="Copiar"></div>
</div>
</section>
<section class="section2">
<div class="Contenedor-muneco ">
<img src="Muñeco.png" alt="Muneco Alura">
</div>
<div class="Contenedor-h3 ">
<h3>Ningún Mensaje fue encontrado</h3>
</div>
<div class="contain-parrafo ">
<p>Ingresa el texto que deseas encriptar o desencriptar</p>
</div>
<div class="contain-resultado">
<img src="R (1).jpeg" alt="">
<h3> Mensaje encriptado con éxito </h3>
<p class="texto-resultado"></p>
</div>
</section>
</main>
<footer>
<p>*Derechos reservados.* </p>
</footer>
<script src="index.js"></script>
</body>
</html>