-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
52 lines (51 loc) · 2.84 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
<!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">
<title>ENCRIPTADOR</title>
<link rel="icon" href="img/candado.ico">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.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=DotGothic16&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
</head>
<body id="body" onload="iniciar();"><!---->
<canvas id="canvas"></canvas>
<div id="pagina">
<!--h1 es el logo-->
<div class="logo">
<h1><a href="https://www.aluracursos.com/">a</a></h1>
</div>
<!--texto a encriptar-->
<div id="secText">
<label for="ingTextAqui"> ⚠ Ingrese solo letras minusculas y sin acentos</label>
<span id="borrar" class="material-symbols-outlined">delete</span>
<textarea spellcheck="false" type="text" id="ingTextAqui" placeholder="Ingrese texto aquí"></textarea>
<button id="reparar"><span class="material-symbols-outlined">build</span> Reparar texto</button>
</div>
<!--botones de encriptado-->
<div class="botones">
<button id="btnEncriptar" class="boton">ENCRIPTAR</button>
<button id="btnDesencriptar" class="boton">DESENCRIPTAR</button>
</div>
<!--mensaje secreto-->
<div class="mensaje">
<img id="imagen" src="img/candado.png" alt="imagen buscando un texto">
<textarea readonly id="msg" placeholder="No se encontro ningún mensaje"></textarea>
<!--boton de copiar-->
<button id="btnCopy" class="copiar">Copiar</button>
</div>
<footer class="foot">
<!--datos del creador-->
<a href="https://www.linkedin.com/in/ihtram-magno/"><img src="img/linkedin-icon.png" alt="linkedin"></a>
<a href="https://www.youtube.com/@aldomagno5789"><img id="i" src="img/yt-icon.png" alt="youtube"></a>
<a href="https://github.com/Ihtram-Magno"><img src="img/github-icon.png" alt="github"></a>
<p>© IHTRAM-M<span>A</span>GNO 2023</p>
</footer>
</div>
<script type="text/javascript" src="script.js"></script>
<script type="text/javascript" src="script2.js"></script>
</body>
</html>