-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (39 loc) · 1.34 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
<!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="styles.css">
</head>
<body>
<header>
<div class="logo">
<h1>
<img src="Imagenes/Vector.png" alt="">
</h1>
</div>
</header>
<main>
<section>
<input class="inputTexto" placeholder="Ingrese el texto aquí "/>
<div class="minusculas">
<img src="Imagenes/Icono.png" alt=""><p>Solo letras minúsculas y sin acentos</p>
</div>
<div class="botones">
<button class="encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</div>
</section>
<section>
<div class="resultadoBox">
<img src="Imagenes/Muñeco.png" alt="" class="imagenMuñeco">
</div>
<textarea class="mensaje"></textarea>
</section>
</main>
</body>
<footer>
<script src="./encriptar.js"></script>
</footer>
</html>