-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.72 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador y Desencriptador de Texto</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="estilos.css">
<style>
.input-section,
.button-section,
.output-section {
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Encriptador y Desencriptador de Texto</h1>
<div class="input-section">
<h2>Ingresa el texto que deseas encriptar o desencriptar:</h2>
<textarea id="input-text" placeholder="Ingresa el texto en minúscula y sin tilde aquí."></textarea>
</div>
<div class="button-section">
<button id="encrypt-btn">Encriptar</button>
<button id="decrypt-btn">Desencriptar</button>
<button id="copy-btn">Copiar</button>
</div>
<div class="output-section">
<h2>Resultado:</h2>
<textarea id="output-text" placeholder="El resultado aparecerá aquí"></textarea>
</div>
<footer>
<div class="social-icons">
<a href="https://www.linkedin.com/in/metzeldor" target="_blank" rel="noopener">
<i class="fab fa-linkedin"></i>
</a>
<a href="https://github.com/metzeldor" target="_blank" rel="noopener">
<i class="fab fa-github"></i>
</a>
</div>
<div class="credits">
Desarrollado por <a href="https://www.linkedin.com/in/metzeldor" target="_blank" rel="noopener">Jorge Andres Tejada Ramirez</a>
</div>
</footer>
</div>
<script src="app.js"></script>
</body>
</html>