-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (68 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
<!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="style.css" />
<title>Encriptar Alura</title>
</head>
<body>
<nav>
<img src="img/logo-removebg-preview.png" alt="" class="logo" />
</nav>
<main class="main-box">
<section class="box-ecriptado">
<h3>Ingrese su texto a Encriptar</h3>
<textarea
class="text-input"
type="text"
name="input-texto"
id="input-texto"
placeholder="Ingrese el texto aqui"
cols="50"
rows="15"
></textarea>
<input
class="btn"
type="button"
value="Encriptar"
id="btn-encriptar"
/>
<input
class="btn"
type="button"
value="Desencriptar"
id="btn-desencriptar"
/>
</section>
<section class="msg-box">
<h3> Texto Encriptado</h3>
<textarea
name="text-input"
class="text-input-salida"
id="msg"
cols="30"
rows="15"
></textarea>
<input
class="btn"
onclick="copytext()"
type="button"
value="copiar"
id="btn-copy"
/>
</section>
</main>
<footer>
<img class="footerlogo" src="img/logo-removebg-preview.png" alt=""><br>
<h3>Mis redes sociales</h3>
<a href="https://www.linkedin.com/in/carlos-jose-linares-rodriguez-650462b0/" target="_blank" class="redes"><img src="img/icons8-linkedin-circled-40.png" alt=""></a>
<a href="https://www.instagram.com/ikarlangaxz/" target="_blank" class="redes"><img src="img/icons8-instagram-40.png" alt=""></a>
<a href="https://github.com/KarlangaXZ" target="_blank" class="redes"><img src="img/icons8-github-40.png" alt=""></a>
<p>Creado por Carlos J. Linares©</p><br>
</footer>
<script src="script.js"></script>
<script src="copiar.js"></script>
</body>
</html>