-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (41 loc) · 1.7 KB
/
Copy pathindex.html
File metadata and controls
54 lines (41 loc) · 1.7 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Encriptador y desencriptador</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="script.js">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body>
<div id="encriptador">
<div class="input">
<textarea id="input-encriptador" placeholder="Escriba su texto aquí"></textarea>
</div>
<div id="logo">
<a href="index.html">
<img class="logo-imagen" src="imagenes/logo.png">
</a>
</div>
<div id="rectangulo">
<img id="imagen-muneco" src="imagenes/muneco.png">
<textarea id="textoencrip" cols="50" rows="8"></textarea>
<div id="frame5">
<h1 id="aviso2">Ningún mensaje fue encontrado</h1>
<p id="aviso3">Ingrese el texto que desees encriptar o desencriptar</p>
</div>
<button id="boton-copiar">Copiar</button>
</div>
<div id="frame1">
<p id="aviso">🛈 Solo letras miniscúlas y sin acento</p>
</div>
<div class="frame3">
<button id="boton-encrip">Encriptar</button>
<button id="boton-desencriptar">Desencriptar</button>
</div>
</div>
<script src="script.js"></script>
</body>
</html>