-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (35 loc) · 1.69 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">
<title> Encriptador de textos - ONE Grupo 5</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<script src="encriptador.js"></script>
</head>
<body>
<header>
<img src="images/logo.png" id="logoAlura" alt="Logo de Alura">
<img src="images/EncriptadorTexto.png" id="tituloEncriptador" alt="Animacion de titulo Encriptador de Texto">
</header>
<main>
<div class="textContainer">
<label for="originalText"></label><textarea id="originalText" placeholder="Ingrese un texto..." autofocus></textarea>
<label for="resultText"></label><textarea id="resultText" disabled placeholder="Sin texto para mostrar..."></textarea>
</div>
<div class="buttonContainer">
<button onclick="encryptText()" id="encryptButton"> Encriptar </button>
<button onclick="decryptText()" id="decryptButton"> Desencriptar </button>
<button onclick="copyToClipboard()" id="copyButton" style="display: none"> Copiar </button>
</div>
</main>
<footer>
<p>© Creado por Gerardo Santana</p>
<img src="images/footerAluraChallenge.png" id="footerAluraChallenge" alt="Alura Challenge en morse">
<div id="acercaAnimaciones">
<p>La animación del fondo de la página es código morse para Alura Challenge.</p>
<p>Todas las animaciones tanto del fondo como el título y el footer son de mi autoría.</p>
</div>
</footer>
</body>
</html>