-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (91 loc) · 5.57 KB
/
Copy pathindex.html
File metadata and controls
127 lines (91 loc) · 5.57 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="es">
<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="icon" type="image/png" href="img/logo_cat.png">
<title>Encriptadorcito</title> <!--Titutlo de sitio web-->
<link rel="stylesheet" href="reset.css/reset.css">
<link rel="stylesheet" href="Encriptador.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chokokutai&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
</head>
<body>
<header class="logo">
<section class="cajaHeader">
<div>
<span class="tittle animate__animated animate__flip">E</span>
<span class="tittle animate__animated animate__flip">n</span>
<span class="tittle animate__animated animate__flip">c</span>
<span class="tittle animate__animated animate__flip">r</span>
<span class="tittle animate__animated animate__flip">i</span>
<span class="tittle animate__animated animate__flip">p</span>
<span class="tittle animate__animated animate__flip">t</span>
<span class="tittle animate__animated animate__flip">a</span>
<span class="tittle animate__animated animate__flip">d</span>
<span class="tittle animate__animated animate__flip">o</span>
<span class="tittle animate__animated animate__flip">r </span>
</div>
<div>
<span class="tittle animate__animated animate__flip">d</span>
<span class="tittle animate__animated animate__flip">e</span>
</div>
<div><span class="tittle animate__animated animate__flip">T</span>
<span class="tittle animate__animated animate__flip">e</span>
<span class="tittle animate__animated animate__flip">x</span>
<span class="tittle animate__animated animate__flip">t</span>
<span class="tittle animate__animated animate__flip">o</span>
<span class="tittle animate__animated animate__flip">.</span>
<span class="tittle animate__animated animate__flip">.</span>
<span class="tittle animate__animated animate__flip">. </span>
</div>
</section>
</header>
<main>
<!--Espacio para ingresar texto por el usuario-->
<section class="espacioTexto">
<textarea class="input" cols="30" rows="10" placeholder="Ingrese texto aquí" ></textarea>
<div>
<h6 class="infoTexto"><img src="img/Vector.png"> Sólo minúsculas y sin acentos</h6>
</div>
<!--aqui van los botones del encriptador-->
<div class="botones">
<button class="btn-encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="btn-desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</div>
</section>
<!--espacio del resultado encriptado o desencriptado-->
<section class="espacioResultado">
<div class="descripcionResultado" id="textoResultado">
<h3 style="font-weight: bold;">Ningún mensaje fue encontrado.</h3>
<p>Ingresa el texto que desees encriptar o desencriptar</p>
</div>
<textarea class="output" cols="20" rows="10"></textarea>
<!--boton de copiar debe esconderse y mostrarse cuando haya un resultado-->
<div class="botones">
<button id="copiar" class="oculto">Copiar</button>
<button class="oculto" id="reiniciar"> ↺ </button>
</div>
</section>
</main>
<footer>
<li class="info">
<a class="linkedin" href="https://www.linkedin.com/in/master-melany/" target="blank">
<img src=https://img.shields.io/badge/linkedin-%231E77B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white alt=linkedin style="margin-bottom: 5px;" />
</a>
<a class="github" href="https://github.com/MelViP" target="_blank">
<img src="https://img.shields.io/badge/github-%23181717.svg?&style=for-the-badge&logo=github&logoColor=white" alt="github" style="margin-bottom: 5px;" />
</a>
</li>
<p class="Copyright">© 2023 Master Melcocha. Todos los derechos reservados.</p>
<img class="gatito" name="gatito" alt="Logotipo Meow" src="img/logo_cat.png">
</footer><!--rodapie con info del web-->
<script src="Encriptador.js"></script>
</body>
</html>
<!--
<div class="linkedinEnlace">
</div> -->