-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 1.21 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador de Texto</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="imagenes/Logo.png" alt="Logo de Alura" class="logo">
</header>
<main>
<section class="input-section">
<textarea class="text-area" placeholder="Ingrese el texto aquí"></textarea>
<div class="advertencia">
<img src="imagenes/warning.png" alt="Icono de advertencia" class="ico-advertencia">
<p>Solo letras minúsculas y sin acentos</p>
</div>
<div class="botones">
<button class="btn btn-encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="btn btn-desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</div>
</section>
<section class="output-section">
<textarea class="mensaje" readonly></textarea>
<button class="btn-copiar" onclick="copiarMensaje()">Copiar</button>
</section>
</main>
<script src="script.js"></script>
</body>
</html>