-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.58 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
<!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 de texto</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="./img/Logo.png" alt="logo de alura">
</header>
<main>
<section>
<div class="ingresar_mensaje">
<label for="mensaje_ingresado"><textarea name="" id="mensaje_ingresado" cols="70" rows="10" placeholder="Ingrese el mensaje aquí"></textarea></label>
</div>
<div class="btns_y_aviso">
<p>! Solo letras minúsculas y sin acentos</p>
<div class="btns">
<input id="Encriptador" type="button" value="Encriptar">
<input id="Desencriptador" type="button" value="Desencriptar">
</div>
</div>
</section>
<section class="descubrir_mensaje">
<div id="mensaje_2">
<img src="./img/Muñeco.png" alt="Muñeco" id="imgInput">
<p id="textoSalida">No se ha encontrado ningún mensaje</p>
<input id="btn_copiar" type="button" value="Copiar">
</div>
</section>
</main>
<footer>
<div>
<p>Autor: Luis Gerardo Gonzalez Ramirez. </p>
<p>2023</p>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>