-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (55 loc) · 2.09 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
59
60
61
62
63
64
65
<!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>
<!-- hoja-de-estilos -->
<link rel="stylesheet" href="style.css">
<!-- codigo-de-funciónalidad -->
<script src="script.js" defer></script>
<!-- links-para-tipo-de-fuente -->
<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=Lato:wght@300;400;700;900&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<img src="./Logo.svg">
</header>
<main class="main">
<!-- sección 1 -->
<section class="main__block1">
<textarea placeholder="Ingrese Texto Aqui." id='textarea1'></textarea>
<article class="block1__aviso">
<img src="./Vector.svg" />
<p>Solo puedes ingresar <strong>letras minusculas y sin acentos</strong></p>
</article>
<div class="container-buttons">
<button class="button button--secondary b2" id="decryptButton"
onclick="handleClick('decrypt')">Desencriptar</button>
<button class="button b1" id="encryptButton" onclick="handleClick('encrypt')">Encriptar</button>
</div>
</section>
<!-- sección 2 -->
<section class="main__block2">
<div class="container-textarea">
<article class="warning" id="warningSection">
<img src="./Muñeco.svg" alt="">
<p>SIN MENSAJE</p>
<span>Ingresa el texto que deseas <em>encriptar/desincriptar.<em> </span>
</article>
<div class="resultados novisible" id="resultsSection">
<textarea id="textarea2"></textarea>
<button class="button" onclick="copyText()" id="copyButton">Copiar</button>
</div>
</div>
</section>
</main><br>
<footer>
<img src="./Logo.svg">
<p class="copyright">© Copyright Encriptador Alura - 2023</p>
</footer>
</body>
</html>