-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (67 loc) · 3.1 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!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/Desencriptador</title>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter">
<link href="img/Vector.png" rel="icon">
<link href="img/Vector.png" rel="apple-touch-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.css"
integrity="sha512-1cK78a1o+ht2JcaW6g8OXYwqpev9+6GqOkz9xmBN9iUUhIndKtxwILGWYOSibOKjLsEdjyjZvYDq/cZwNeak0w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<!-- data-aos="fade-down" data-aos-duration="2000" -->
<header class="header">
<div class="header-left">
<img id="logo" src="img/Vector.png" alt="Logo Alura" style="float: left; margin: 3px;" />
</div>
<div class="header-center">
<a class="logo">Alura Challange</a>
</div>
<div class="header-right">
<button type="button" class="buttonEncriptar" id="buttonEncriptar"
onclick="buttonEncriptar()">Encriptar</button>
<button type="button" class="buttonDesencriptar" id="buttonDesencriptar"
onclick="buttonDesencriptar()">Desencriptar</button>
<button type="button" class="buttonCopiar" id="buttonCopiar" onclick="buttonCopiar()">Copiar</button>
</div>
</header>
<main>
<section class="section1">
<textarea class="textboxEncrypt" id="textboxEncrypt" placeholder="Ingrese aqui el texto."></textarea>
<div id="letras">
<span><img alt="Advertencia" src="img/warning.png">Solo letras minúsculas, sin acentos.</span>
</div>
</section>
<section class="section2">
<textarea placeholder=" " class="textboxDecrypt" id="textboxDecrypt"></textarea>
<img id="muneco" src="img/Muñeco.png" alt="Muñeco"/>
<div class="letras_muneco">
<div id="textoMuneco1">
<span>Ningún mensaje fue encontrado.</span>
</div>
<div id="textoMuneco2">
<span>Ingresa el texto que desees encriptar o desencriptar.</span>
</div>
</div>
<button type="button" class="buttonCopiar" id="buttonCopiar" onclick="buttonCopiar()">Copiar</button>
</section>
</main>
<footer>
<span>Andy Vela © AluraChallenge - 2023</span>
</footer>
<script src="js/app.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/aos/2.3.4/aos.js"
integrity="sha512-A7AYk1fGKX6S2SsHywmPkrnzTZHrgiVT7GcQkLGDe2ev0aWb8zejytzS8wjo7PGEXKqJOrjQ4oORtnimIRZBtw=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
AOS.init();
</script>
<script type="text/JavaScript" src="script.js"></script>
</body>
</html>