-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (58 loc) · 2.01 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
81
82
83
84
85
86
<!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="recest.css">
<link rel="stylesheet" href="style.css">
<title>Encriptador Alura</title>
</head>
<body>
<header>
<div class="logoAlura">
<img src="imagenes (1)/logo.png" alt="Logo alura ">
</div>
<h1>ENCRIPTADOR DE TEXTO</h1>
</header>
<main>
<section id="main">
<div class="caja-input">
<h2>Mensaje a encriptar</h2>
<textarea class="input-texto" cols="80" rows="10" placeholder="ingrese el texto aqui">
</textarea>
<div id="div-alertainfo">
<h3 class=" informacion">
Solo letras minusculas y sin acentos.
</h3>
</div>
<div class="botones">
<button class="encriptar" onclick="botonEncriptar()">
Encriptar
</button>
<button class="desencriptar" onclick="botonDesencriptar()">
Desencriptar
</button>
</div>
</div>
<div class="caja-resultado">
<h2>Mensaje desencriptado</h2>
<!--
<div class ="imagenmuneco">
<img src = "imagenes/Muneco.png">
</div>
-->
<textarea class="mensaje" cols="30" rows="10"></textarea>
<button class="copiar" onclick="copiar()">
Copiar
</button>
</div>
</section>
</main>
<footer>
<!--pie de pagina-->
<p class="copyright">© Copyright Barberia Alura 2022 German</p>
</footer>
<script src="script.js"></script>
</body>
</html>