-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (53 loc) · 2.17 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
56
57
58
<!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="icon" type="imagen/x-icon" href="./imagenes/Favicon.ico">
<link rel="stylesheet" href="./css/estilos.css">
<title>Encriptador SECURITY-RICO</title>
</head>
<body>
<!-- ENCABEZADO -->
<header>
<a href="#" rel="">
<img src="./imagenes/Logo Alura.svg" alt="Logo Alura" class="logo">
</a>
</header>
<!-- PRINCIPAL -->
<main>
<section class="Encriptador">
<textarea class="encriptar" placeholder="Ingrese El Texto Aquí"></textarea>
<div class="encriptador-aviso">
<img src="./imagenes/Exclamación.png" alt="Imagen Aviso" class="img-aviso">
<p class="texto-aviso">Suprimo Acentos y Símbolos a la Salida</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/Persona.svg" alt="Imagen Persona" class="img-persona">
<p class="texto-uno">Ningún Mensaje Fue Encontrado</p>
<p class="texto-dos">Ingrese El Texto Que Desee Encriptar o Desencriptar</p>
</div>
<textarea type="Mensaje" class="evaluar" readonly></textarea>
<button type="submit" class="btn-copiar">Copiar</button>
</section>
</main>
<!-- PIE DE PAGINA -->
<footer>
<p class="copyright">© CopyRight 2024 - Encriptador SECURITYRICO - Fernando Rico C.</p>
<a href="#" rel="">
<img src="./imagenes/LinkedIn.png" alt="LinkedIn" class="linkedin">
</a>
<a href="#" rel="">
<img src="./imagenes/GitHub.png" alt="GitHub" class="github">
</a>
</footer>
<script src="./js/programa.js"></script>
</body>
</html>