-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.62 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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Secretio | Mensaje Secreto</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<meta name="description" content="App para encriptar o desencriptar un mensaje secreto">
<link href="img/guiño.png" rel="icon" type="icon">
<link href="styles/reset.css" rel="stylesheet" type="text/css" />
<link href="styles/styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="titulo-principal"><a href="https://fontmeme.com/es/fuente-del-logotipo-de-twitch/"><img
src="https://fontmeme.com/permalink/230130/e722b2bf430d327feea8b7737f026ad0.png"
alt="fuente-del-logotipo-de-twitch" height="100%" width="100%"></a></div>
<div>
<div id="seccion-encriptar">
<p id="subtitulo">*Solo letras minúsculas, sin acentos y carácteres especiales</p>
<textarea id="entrada" name="entrada" rows="10" cols="50" placeholder="Escribe el texto aquí" type="text"
required></textarea>
<div>
<input type="button" class="boton" id="boton-encriptar" name="boton-encriptar" value="Encriptar"></input>
<input type="button" class="boton" id="boton-desencriptar" name="boton-desencriptar"
value="Desencriptar"></input>
</div>
</div>
<div id="seccion-desencriptar">
<textarea id="salida" name="salida" rows="10" cols="50" readonly="true"></textarea>
<div>
<input type="button" class="boton" id="boton-copiar" name="boton-copiar" value="Copiar"></input>
<input type="button" class="boton" id="nuevo-mensaje" name="nuevo-mensaje" value="Nuevo Mensaje"></input>
</div>
</div>
</div>
<footer>
<p>Hecho con amor por Zoe💜</p>
<p>Contacto: [email protected]</p>
<p>2022©</p>
<div class="redes">
<a href="https://www.linkedin.com/in/zoe-guzman-0449b9229/" link text="perfil de linkedin"><img id="linkedin-logo"
src="img/linkedin-logo.svg" alt="linkedin logo" height="30vh" width="30vw"></a>
<a href="https://github.com/ZoeG00" link text="perfil de github"><img id="github-logo" src="img/github-logo.svg"
alt="github logo" height="30vh" width="30vw"> </a>
</div>
</footer>
</body>
<dialog open id="niña-con-lupa">
<img src="img/niña-con-lupa.png" alt="no se encontro texto" height="100vh" width="200vw">
<p>no se encuentra mingún mensaje</p>
</dialog>
<dialog close id="ventana">
<img src="img/guiño.png" alt="cara guiñando" height="50vh" width="50vw">
<p>¡Mensaje copiado!</p>
<button class="boton" id="boton-cerrar">Cerrar</button>
</dialog>
<script type="text/javascript" src="src/funciones.js"></script>
</html>