-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (54 loc) · 2.54 KB
/
Copy pathindex.html
File metadata and controls
55 lines (54 loc) · 2.54 KB
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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=BIZ+UDMincho&family=Inter:wght@300&family=Open+Sans:wght@800&family=Roboto:wght@300&display=swap" rel="stylesheet">
<body>
<header>
</header>
<main>
<section class="Primero">
<h1><img src="img/VectorAluraLogo.png" alt="Alura" class="logo"></h1>
<form class="formulario">
<h1><label for="ingreso">Ingrese el Texto</label></h1>
<textarea name="ingreso" id="ingreso" placeholder="Ingrese Texto Aqui" required ></textarea>
<fieldset class="advertencia">
<p>Solo letras y minusculas y sin acentos</p>
<img src="/img/Vectorimportante.png" alt="Importantne" class="advertencia2">
</fieldset>
<fieldset class="botones">
<button class="boton-oscuro" id="encriptar"><h4>Encriptar</h4></button>
<button class="boton-claro" id="desencriptar"><h4>Desencriptar</h4></button>
</fieldset>
</form>
</section>
<section class="segundo">
<form class="formulario2">
<fieldset class="segundo-off" id="block-text">
<textarea name="salida" id="salida" cols="50" rows="40" class="texto" placeholder="Salida aqui" readonly></textarea>
</fieldset>
<section class="centrar-ena" id="centro">
<img src="img/MuniecoNoSeEncontro.png" alt="No Se Encontro" class="imagen">
<h2 id="aviso">Ningun mensaje fue encontrado</h2>
<p>Ingresa el texto que desees encriptar.</p>
</section>
<button class="boton-claro2-off" id="copiar"><h4>Copiar</h4></button>
</form>
</section>
</main>
<footer>
<p>Desarrollado por Edgar Mahi Hernandez Garcia</p>
</footer>
<script src="js/utiles.js"></script>
<script src="js/cambio-dom.js"></script>
<script src="js/encriptado.js"></script>
<script src="js/botones.js"></script>
</body>
</html>