-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.5 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 Texto</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img src="Logo.png" alt="Logo-Alura" title="Logo Alura" class="logo">
<h1>Encriptador secreto de texto</h1>
</header>
<main>
<section class="text-section">
<label for="textoIntroducido"></label>
<textarea id="textoIntroducido" class="campoTexto" placeholder="Ingrese su texto aquí:" required maxlength="300"></textarea>
<div class="botones">
<button class="boton botonE" onclick="botonE()">Encriptar</button>
<button class="boton botonD" onclick="botonD()">Desencriptar</button>
</div>
<p id="error-message" class="error-message"></p>
</section>
<section class="result-section">
<label for="resultado"></label>
<textarea id="resultado" class="resultado" placeholder="Resultado:" readonly></textarea>
<div class="botones">
<button class="boton botonC" onclick="botonC()">Copiar</button>
</div>
</section>
</main>
<footer>
<p>Developed by: Jesús A. Gutiérrez M. © 2024</p>
</footer>
<script src="app.js"></script>
</body>
</html>