-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (74 loc) · 3.14 KB
/
Copy pathindex.html
File metadata and controls
96 lines (74 loc) · 3.14 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
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
86
87
88
89
90
91
92
93
94
95
96
<!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>Encriptador de Texto</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="Navbar">
<li><h3>Alura</h3></li>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Me</a></li>
</ul>
</nav>
</header>
<section>
<div class="container">
<textarea id="input" class="box one" placeholder="Introduce el texto a encriptar o desencriptar"></textarea>
</div>
<div class="buttons">
<ul>
<li>
<button onclick="encrypt()" data-text="Awesome" class="button enc">
<span class="actual-text"> Encriptar </span>
<span class="hover-text" aria-hidden="true"> Encriptar </span>
</button>
</li>
<li>
<button onclick="decrypt()" data-text="Awesome" class="button des">
<span class="actual-text"> Desencriptar </span>
<span class="hover-text" aria-hidden="true"> Desencriptar </span>
</button>
</li>
<li>
<button onclick="copyEncrypted()" data-text="Awesome" class="button cop">
<span class="actual-text"> Copiar </span>
<span class="hover-text" aria-hidden="true"> Copiar </span>
</button>
</li>
<li>
<button onclick="pasteEncrypted()" data-text="Awesome" class="button peg">
<span class="actual-text"> Pegar </span>
<span class="hover-text" aria-hidden="true"> Pegar </span>
</button>
</li>
<li>
<button onclick="resetText()" data-text="Awesome" class="button peg">
<span class="actual-text"> Reiniciar </span>
<span class="hover-text" aria-hidden="true"> Reiniciar </span>
</button>
</li>
</ul>
</div>
<div class="container-two">
<div id="output" class="box two"></div>
</div>
</section>
<footer>
<nav class="footer">
<ul>
<li><a href="https://instagram.com/leanmaga_dev">Instagram</a></li>
<li><a href="https://twitter.com/Le_Mark2023">Twitter</a></li>
<li><a href="https://linkedin.com/in/leandromagallanes">LinkedIn</a></li>
<li><a href="https://leanmaga.github.io/myportfolio">Portfolio</a></li>
</ul>
</nav>
</footer>
<script src="main.js"></script>
</body>
</html>