-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
53 lines (52 loc) · 2.59 KB
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel ="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="dark_styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Inter&family=Montserrat:wght@200&display=swap" rel="stylesheet">
<title>Encriptador de mensaje</title>
</head>
<body>
<div class="container">
<header class="logo">
<img class="img-logo" src="imagenes/Logo.png" alt="Logo de Alura">
<button class="darkModeSwitch ms-2" id="switch">
<span><i class="fas fa-sun"></i></span>
<span><i class="fas fa-moon"></i></span>
</button>
</header>
<main class="principal">
<section class="izquierda">
<textarea class="text-area" id="textoEntrada" cols="20" rows="6" placeholder="Ingrese el texto aquí"></textarea>
<div>
<h6 class="informacion"> *Solo letras minúnsculas y sin acentos </h6>
</div>
<div class="botones">
<button type="button" class="btn-encriptar" onclick="btnEncriptar()">Encriptar</button>
<button type="button" class="btn-desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</div>
</section>
<section class="derecha">
<img src="imagenes/Muñeco.png" alt="foto muñeco" id="imgDerecha">
<h2 id="texto">Ningún mensaje fue encontrado</h2>
<textarea id ="msj" class="mensaje" cols="80" rows="8">ingrese el texto que desees encriptar o desencriptar</textarea>
<div>
<button type="button" id="copiar" class="btn-copiar" onclick="copiar()"> Copiar</button>
</div>
</section>
</main>
</div>
<footer>
<p class="copyright">© Copyright - Gladis Angelica Brites - 2023 ❤</p>
</footer>
<script src="script.js"></script>
<script type="text/javascript" src="dark_js.js"></script>
</body>
</html>