-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (46 loc) · 2.12 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="Imagenes\Lupa1.png">
<title>Encriptador De Texto</title>
</head>
<body >
<header>
<img id="logoAlura" src="Imagenes\Logo1.png"><img id="logoOne" src="Imagenes\LogoONE.png">
<br>
<br>
<h1>Encriptador de Texto Alura - O.N.E.</h1><img id= "logoLupa" src="Imagenes\Lupa1.png">
<br>
</header>
<main>
<section class="advertencia">
<img src="Imagenes\advert.png">NO se encriptan caracteres especiales y números<img src="Imagenes\advert.png">
</section>
<section>
<textarea type="text" id="input" placeholder="Ingrese el texto aquí"></textarea>
<div>
<button type="button" class="botones" onclick="botonencriptar()">Encriptar</button>
<button type="button" class="botones" onclick="botondesencriptar()">Desencriptar</button>
</div>
</section>
<section>
<img class="flechaL"src="Imagenes\flecha L.png">
<textarea disabled type="text" id="input-desencript" placeholder="No se encontró ningún mensaje/texto"></textarea>
<img class="flechaL"src="Imagenes\flecha L invert.png">
<div>
<button type="button" class="botones" onclick="botoncopiar()">Copiar</button>
</div>
</section>
</main>
</body>
<br>
<footer id="piepagina">
Autor: CristianGC - <a href="https://github.com/cgc1996"><img src="Imagenes\LogoGithub.png">GitHub</a> <a href="https://www.linkedin.com/in/gec1996/"><img src="Imagenes\LogoLinkedin.png">Linkedin</a>
</footer>
<script src="Encriptador.js"></script>
<script src="Desencriptador.js"></script>
<script src="BotonCopiar.js"></script>
</html>