-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (57 loc) · 2.42 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Encriptador </title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="Recursos/favicon.png"/>
</head>
<body>
<header>
<a class="logo" href="index.html">
<img src="Recursos/Vector.png" alt="Img/Logo Alura"> <!-- Logo encabezado -->
</a>
</header>
<main>
<section class="txt-entrada">
<textarea class="txt-area" placeholder=" Ingrese el Texto Aqui!"></textarea>
<div class="informacion-terminos">
<h6>Solo Letras Minusculas y sin Acento</h6>
<img src="Recursos/icon_info.png" alt="alerta">
</div>
<div class="contenedor-button">
<input type="button" value="Encriptar" class="button-encriptar">
<input type="button" value="Desencriptar" class="button-desencriptar">
</div>
</section>
<section class="txt-salida">
<div class="img-muñeco">
<img src="Recursos/Muñeco.png" width="250">
</div>
<div class="contenedor-h3 ">
<h3> Ningun Mensaje Fue Encontrado</h3>
</div>
<div class="contenedor-parrafo ">
<p>Ingresa el Texto que Desea Encriptar o Desencriptar </p>
</div>
<div class="contenedor-resultado">
<h3>Mensaje Encriptado</h3>
<textarea class="txt-resultado"></textarea>
</div>
<div class="contenedor-copiar">
<input type="button" class="btn-copiar" value="Copiar">
</div>
</section>
</main>
<footer>
<div class="github">
<a href="https://github.com/JokerC0">
<img src="Recursos/icon_github.png" width="30px">
</a>
</div>
<p><strong> Encriptador de Texto Desarrollado por <a href="https://github.com/JokerC0" class="link">[Eduard Sepulveda]</a> </strong></p>
</footer>
<script src="script.js"></script>
</body>
</html>