-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (48 loc) · 1.76 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
<!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="style.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400&display=swap" rel="stylesheet">
<title>Encriptador Desafio 1</title>
</head>
<body>
<header>
<img class="Logo" src="IMAGENES/Logo.svg" alt="Logo">
</header>
<main>
<section class="Seccion 1">
<div class="Caja-De-Texto">
<textarea placeholder= "Escribe algo :D"
class="CajaDeTexto"></textarea>
</div>
<div class ="Alerta">
<img src="IMAGENES/alerta.svg" alt="AlertaImagen">
<p>¡Solo letras minusculas y sin acentos! </p>
</div>
<div class="Botones">
<input type="button" class ="BOTON_ENCRIPTAR" value="Encriptar">
<input type="button" class="BOTON-DESENCRIPTAR" value="Desencriptar">
</div>
</section>
<section class="Seccion2">
<div class="Monito">
<img src="IMAGENES/Muñeco.svg" alt="Muñeco">
</div>
<div class="Parrafo" >
<h3> Ningun mensaje fue <br> Encontrado</h3>
<p> Ingresa el texto que deseas encriptar o <br> desencriptar </p>
</div>
<div class="BOTON_COPIAR">
<input type="button" class="Boton-Copiar" value="Copiar">
</div>
<div class="RESULTADO">
<p class="Texto-Resultado"></p>
</div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>