-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (52 loc) · 1.98 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
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./imagenes/favicon.ico">
<link rel="stylesheet" href="./css/style.css">
<title>Encriptador de texto</title>
</head>
<body>
<!--Encabezado-->
<header>
<a href="#">
<img src="./imagenes/logo.svg" alt="Logo Alura" class="logo">
</a>
</header>
<!--Sesión principal-->
<main>
<section class="encriptador">
<textarea class="encriptar" placeholder="Ingrese el texto aqui"></textarea>
<div class="encriptador-aviso">
<img src="./imagenes/aviso.svg" alt="Imagen Aviso" class="img-aviso">
<p class="texto-aviso"> Solo letras minúsculas y sin acentos</p>
</div>
<div class="encriptador-contenedor">
<button type="submit" class="btn-encriptar"> Encriptar! </button>
<button type="submit" class="btn-desencriptar">Desencriptar</button>
</div>
</section>
<section class="tarjeta">
<div class="tarjeta-contenedor">
<img src="./imagenes/muñeco.svg" alt="Imagen Muñeco" class="img-muñeco">
<p class="texto-uno">Ningún mensaje fue encontrado</p>
<p class="texto-dos"> Ingrese el texto que deseas encriptar o desencriptar</p>
</div>
<textarea type="mensaje" class="evaluar" readonly></textarea>
<button type="submit" class="btn-copiar">Copiar</button>
</section>
</main>
<!--Pie de página-->
<footer>
<p class="copyright">©copyright 2024 - Encriptador de texto - desarrollado por Fernando Hurtado </p>
<a href="#" rel="">
<img src="./imagenes/linkedin.svg" alt="Logo linkedin" class="linked">
</a>
<a href="#" rel="">
<img src="./imagenes/github.svg" alt="Logo Github" class="git">
</a>
</footer>
<script src="./js/app.js"></script>
</body>
</html>