-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (43 loc) · 1.94 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
<!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 - Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img class="logo" src="./img/logo.png" alt="logo alura ">
</header>
<main>
<div class="encriptador">
<div class="encriptador-primera-parte">
<section class="mensaje-encriptar">
<form class="formulario" action="">
<fieldset>
<textarea type="" name="mensaje" id="mensaje" value="mensaje" placeholder="Ingrese el texto aqui" required rows="20" cols="40"></textarea>
</fieldset>
</form>
</section>
<section class="aclaracion-botones">
<p class="aclaracion"><img src="./img/error.svg" alt="error"> Solo letras minusculas y sin acentos</p>
<button type="button" class="boton" id="encriptar">Encriptar</button>
<button type="button" class="boton" id="desencriptar">Desencriptar</button>
</section>
</div>
<section class="mostrar-mensaje">
<img id="imagen-chico" src="./img/muñeco.png" alt="Hombrecito con una lupa en color azul y blanco, hecho con lineas sin tanto detalle">
<article class="sin-mensaje">
<h2 class="ningun-mensaje-encontrado">Ningun mensaje fue encontrado</h2>
<p class="p-ingrese-texto">Ingrese el texto que desees encriptar o desencriptar.</p>
</article>
</section>
</div>
</main>
<footer></footer>
<script src="script.js"></script>
</body>
</html>