-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (45 loc) · 1.71 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./Styless/normalize.css">
<link rel="stylesheet" href="./Styless/style-Desktop.css">
<link rel="stylesheet" href="./Styless/alert.css">
<link rel="stylesheet" href="./Styless/responsive.css">
<script src="https://kit.fontawesome.com/f861f16254.js" crossorigin="anonymous"></script>
<title>Encriptador de Texto</title>
</head>
<body>
<header>
<i id="icon-Theme" class="fa-solid fa-circle-half-stroke fa-3x"></i>
</header>
<main>
<div id="text">
<h1>ENCRIPTADOR DE TEXTO</h1>
<textarea placeholder="Ingresa el texto aquí" id="ingresar-texto"></textarea>
<div id="alertEncriptar"></div>
<p id="advertencia"><i class="fa-solid fa-circle-exclamation"></i>Solo letras minúsculas y sin acentos</p>
<div class="button">
<button id="encriptar">Encriptar</button>
<button id="desencriptar">Desencriptar</button>
</div>
</div>
<div id="encriptacion">
<textarea id="text-Desencriptado" disabled></textarea>
<button id="copy">Copiar</button>
</div>
<!- Div de alerta ->
<div id="ovarlay" class="overlay hidden">
<div class="overlay-content">
<p id="text-alert"></p>
<button id="close-overlay">Entendido</button>
</div>
</div>
</main>
<footer>
<h6>Desarrollado por Juan Valenzuela</h6>
</footer>
<script src="app.js"></script>
</body>
</html>