-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (55 loc) · 2.57 KB
/
Copy pathindex.html
File metadata and controls
55 lines (55 loc) · 2.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
<!DOCTYPE html>
<html lang="en">
<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="reset.css">
<link rel="stylesheet" href="styles.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=Orbitron&display=swap" rel="stylesheet">
<title>EncriptaPunks</title>
<script src="https://kit.fontawesome.com/af63097f6a.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<img src="simbolo-anarquia.jpg" class="logo" alt="logo de alura modificado">
<h1>EncriptaPunks</h1>
</header>
<main>
<section class="section-1">
<textarea class="text-area" cols="30" rows="10" placeholder="Ingrese el texto aquí"></textarea>
<div>
<h6 class="informacion">Solo letras minúsculas y sin acento</h6>
<div class="botones">
<button class="btn-encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="btn-desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</div>
</div>
</section>
<section class="section-2">
<textarea class="mensaje"cols="20" rows="10"></textarea>
<div>
<button class="copiar" onclick="btnCopiar()">Copiar</button>
</div>
<div id="modal" class="modal">
<span id="spamMessage" class="spam-message">¡Texto copiado al portapapeles!</span>
</div>
</div>
</section>
</main>
<footer>
<div class="contacto">
<a href="https://github.com/PunksCode"><i class="fa-brands fa-github"></i></a>
<a href="https://www.facebook.com/agustin.jerez.37"><i class="fa-brands fa-facebook"></i></a>
<a href="https://www.linkedin.com/in/pablo-agust%C3%ADn-jerez-482823270/"><i class="fa-brands fa-linkedin"></i></a>
<a href="https://twitter.com/Agusxpunk"><i class="fa-brands fa-twitter"></i></a>
<a href="https://www.instagram.com/agustinpunks/"><i class="fa-brands fa-instagram"></i></a>
<a href="https://api.whatsapp.com/send?phone=543884602354" class="whatsapp-link"><i class="fa-brands fa-whatsapp"></i></a>
</div>
<p class="copyright">Copyright © 2023 Agustin Jerez</p>
</footer>
<script src="script.js"></script>
</body>
</html>