-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (57 loc) · 2.55 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
<!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">
<link rel="stylesheet" href="estilosnuevos.css">
<title>encriptador de texto</title>
</head>
<body>
<div id="principal">
<header>
<img id="imagenLogo" src="Logo.png" alt="LOGO ALURA">
</header>
<section id="area">
<textarea class="caja"
onkeypress="return ( event.charCode == [32] || (event.charCode >= 48 && event.charCode <= 57) || (event.charCode >= 97 && event.charCode <= 122) || (event.charCode >= 33 && event.charCode <= 64) )"
placeholder="ingrese el texto aqui"></textarea>
<div class="textop">
<p> Solo letras minúsculas y sin acentos</p>
</div>
<div id="botones">
<input type="button" class="botonencriptar" value="ENCRIPTAR">
<input type="button" class="botondesencriptar" value="DESENCRIPTAR">
</div>
</section>
<aside id="secundario">
<img class="contenedor-imagen " src="Muñeco.png" alt="IMAGEN DE MUÑECO">
<div class=" contenedor-texto ">
<strong>NINGÚN MENSAJE FUE ENCONTRADO</strong>
</div>
<div class="contenedor-parrafo ">
<p>Ingresa el texto que deseas encriptar o desencriptar</p>
</div>
<div class="texto-resultado">
<p></p>
</div>
<div id="copiar">
<input type="button" class="bcopiar" value="COPIAR">
</div>
</aside>
</div>
</main>
<footer>
<div class="footer-box" id="contact">
<h3>Realizado por</h3>
<ul class="footer-box__items">
<li class="github--btn"><a href="https://github.com/fabriciocorsi" target="_blank"><img src="github.png"alt="Link al perfil de GitHub de Fabricio Corsi" id="footer-btn"></a></li>
<li class="mail--btn"><a href="fabricio.corsi87@gmail.com"><img src="google-gmail.svg"alt="Link al mail fabricio.corsi87@gmail.com" id="footer-btn"></a></li>
<li class="linkedin--btn"><a href="https://www.linkedin.com/in/fabricio-corsi-a18411247/" target="_blank"><img src="linkedin.jpg" alt="Link al perfil de LinkedIn de Fabricio corsi"id="footer-btn"></a></li>
</ul>
</div>
</footer>
<script src="archivo.js">
</script>
</body>
</html>