-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (51 loc) · 1.97 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
53
54
<!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" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter&display=swap">
<title>Challengue Encriptador de Texto</title>
</head>
<body>
<header>
<a href="#">
<img src="./assets/logo.svg" alt="Logo Alura" class="logo_alura" />
</a>
</header>
<main>
<section class="section-encriptador">
<textarea
class="encriptar"
placeholder="Ingrese el texto aquí"
></textarea>
<div class="alerta-encriptador">
<img src="./assets/alert.svg" alt="Imagen alerta"/>
<p class="texto-alerta">Solo letras minúsculas y sin acentos</p>
</div>
<div class="container-encriptador">
<button type="submit" class="btn-encriptar">Encriptar</button>
<button type="submit" class="btn-desencriptar">Desencriptar</button>
</div>
</section>
<section class="section-tarjeta">
<div class="container-tarjeta">
<img src="./assets/Muñeco.png" alt="muñeco" class="img-muñeco"/>
<h3 class="texto-uno">Ningún mensaje fue encontrado</h3>
<p class="texto-dos">
Ingrese el texto que desees encriptar o desencriptar
</p>
</div>
<textarea type="mensaje" class="evaluar" readonly></textarea>
<button type="submit" class="btn-copiar">Copiar</button>
</section>
</main>
<footer>
<p class="informacion">
Challengue Encriptador de texto - Desarrollado por Wilmer Andrés López - Alura Latam 2024
</p>
</footer>
<script src="./js/script.js"></script>
</body>
</html>