-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 2.17 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
<!DOCTYPE html>
<html lang="es">
<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">
<title>Encriptador de Texto</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/movil.css">
<script src="https://kit.fontawesome.com/5f3c62802e.js" crossorigin="anonymous"></script>
<link rel='stylesheet'
href='https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css'/>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body>
<header>
<a href="index.html"><img class="logo" src="imagenes/logo.png" alt="LogoAlura"></a>
</header>
<br>
<main class="ancho">
<section>
<textarea class="areatexto" cols="30" rows="10" placeholder="Ingrese el texto aquí"></textarea>
<div>
<h6 class="info">Solo letras minúsculas y sin acentos</h6>
<i class=" iconoinfo fa-sharp fa-solid fa-circle-exclamation"></i>
</div>
<br><br>
<div class="botones animate__animated animate__bounceIn">
<button class="btn-encriptar" value="encripta" onclick="btnEncriptar()"> Encriptar</button>
<button class="btn-desencriptar" onclick="btnDesencriptar()"> Desencriptar</button>
</div>
</section>
</main>
<section>
<textarea readonly class="mensaje" cols="20" rows="10"></textarea>
<div class="cajaimagen">
<h2>Ningún mensaje fue encontrado</h2>
<br>
<p>Ingresa el texto que desees encriptar o desencriptar</p>
</div>
<div>
<button class="btn-copiar" onclick="btnCopiar()"> Copiar</button>
</div>
<br>
</section>
<br><br>
<footer>
<div class="redes ancho">
<a href="https://github.com/EnriqueCocom" target="_blank"><i class="fa-brands fa-square-github"></i></a>
<a href="https://www.linkedin.com/in/enriquecocom/" target="_blank"><i class="icono fa-brands fa-linkedin"></i></a>
<p>©<script>document.write(new Date().getFullYear())</script> By Enrique Cocom Canul</p>
</div>
</footer>
<script src="js/index.js"></script>
</body>
</html>