-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (46 loc) · 1.61 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
<!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">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<title>Encriptador De Texto</title>
</head>
<body>
<header>
<div class="logo">
<h1>
<img src="Imagenes/Logo.svg" alt="Logo">
</h1>
</div>
</header>
<main>
<div class="mensaje-ingresado">
<textarea name="" id="mensaje-entrada" cols="30" rows="10" placeholder="Ingrese el texto"></textarea>
<section>
<button id="btn-encriptar">Encriptar</button>
<button id="btn-desencriptar">Desencriptar</button>
</section>
</div>
<div class="mensaje-obtenido">
<div class="mensaje-salida-vacia">
<img src="Imagenes/Muñeco.svg" alt="Muñeco">
<section>
<p>Ningún mensaje fue encontrado</p>
<p>Ingresa el texto que desees encriptar o desencriptar</p>
</section>
</div>
<div class="mensaje-salida">
<p id="mensaje-salida-texto"></p>
</div>
<div class="btn-copiar">
<button id="btn-copiar">Copiar</button>
</div>
</div>
</main>
</body>
<script src="encriptador.js"></script>
</html>