-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (30 loc) · 1.22 KB
/
index.html
File metadata and controls
34 lines (30 loc) · 1.22 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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="stylesheet" href="Style.css">
<title>Encriptador</title>
</head>
<body>
<img id="icono" src="img/Vector.png" alt="icono de alura">
<main>
<section>
<textarea class="entrada-texto" cols="30" rows="10" placeholder="Ingrese el texto aqui"></textarea>
<img id="alerta" src="img/alerta.png" alt="icono de alerta">
<p id="mensaje-informativo">Solo letras minúsculas y sin acentos</p>
<button class="encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</section>
<section>
<textarea class="salida-txt" cols="30" rows="10" ></textarea>
<p id="msj-txt">Ningún mensaje fue encontrado</p>
<p id="msj-inf">Ingresa el texto que desees encriptar o desencriptar</p>
<button class="copiar" onclick="btnCopiar()">Copiar</button>
</section>
</main>
<script src="Script.js"></script>
</body>
</html>