-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (55 loc) · 1.95 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
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en"></html>
<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="styles.css" />
<title> Encriptador de Texto </title>
</head>
<body>
<div class = "container">
<div>
<h1> Bienvenido al encriptador de texto </h1>
</div>
<div class= "encriptado">
<textarea
name = "texto"
class = "texto"
id = "texto"
cols = "30"
rows = "10"
placeholder = "Ingresa el texto a encriptar aquí"></textarea>
<textarea
name = "texto2"
class = "texto2"
id = "texto2"
cols = "30"
rows = "10"
placeholder = "Texto encriptado" readonly></textarea>
</div>
<div class= "terminos">
<p > Sólo letras minúsculas y sin acentos </p>
</div>
<div class = "botones">
<button class= "btn-encriptar" type= "button" onclick= "btnEncriptar()">Encriptar</button>
<button class= "btn-desencriptar" type= "button" onclick= "btnDesencriptar()"> Desencriptar </button>
<button class="btn-copy" id = "btn-copy" type="button" onclick="btnCopiar()"> Copiar encriptado </button>
</div>
<div class="gif-cinnamoroll">
<img src="cinnamoroll.gif" id= "cinnamoroll">
</div>
<div>
<img src="flor.png" id= "flor">
<img src="flor.png" id= "flor2">
<img src="flor.png" id= "flor3">
</div>
</div>
<footer>
<div class= "footer">
<p> Creado por: Monserrath Gutiérrez González </p>
</div>
</footer>
<script src= "index.js"></script>
</body>
</html>