-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (45 loc) · 2.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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">
<title>Encriptador de textos</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Jersey+10&family=New+Amsterdam&display=swap" rel="stylesheet">
</Head>
<body>
<header>
<section>
<img class="logo-alura" src="/Imagenes/logocartoon.png" alt="Logo de Cartoon Network">
</section>
<h1>¡Encriptando con Coraje! Protege tus textos como el perro más valiente</h1>
</header>
<main>
<section >
<textarea class="ingreso-texto" name="ingreso" id="ingreso" cols="50" rows="8" placeholder="Ingrese el texto aqui"></textarea>
<div class="Mensaje de Validacion">
<h6 class="restriccion">🔎 Solo letras minúsculas y sin caracteres especiales</h6>
</div>
<div class="botones">
<button class="boton1" onclick="botonEnc()">Encriptar</button>
<button class="boton2" onclick="botonDes()">Desencriptar</button>
</div>
</section>
<section >
<textarea class="salida-texto"name="salida-texto" id="salida-texto" cols="30" rows="13"></textarea>
<div class="botones">
<button class="boton3" onclick="copiarTexto()">Copiar</button>
</div>
</section>
</main>
<footer>
<p class="desarrollo">Desarrollado por Constanza Lagunas Alvarado(2024)</p>
</footer>
<script src="/app.js"></script>
</body>
</html>