-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (58 loc) · 2.43 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
<!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="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=Montserrat&display=swap" rel="stylesheet">
<title>Encriptador</title>
</head>
<body>
<header>
<div class="logo-titulo">
<img class="logo" src="imagenes/Logo.png" alt="Logo de alura con la inicial de la letra a">
</div>
<nav>
<ul class="lista-pestañas">
<li><a href="index.html" class="pestaña">Encriptador</a></li>
</ul>
</nav>
</header>
<main>
<section class="encriptado">
<h2>
INGRESE EL TEXTO PARA ENCRIPTAR/DESENCRIPTAR
</h2>
<div class="textarea">
<textarea class="input-texto" id="input-texto" cols="40" rows="6" placeholder="Ingrese el texto aquí"></textarea>
</div>
<div class="botones">
<button class="encriptar" id="encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="desencriptar" id="desencriptar" onclick="btnDesencriptar()">Desencriptar</button>
</div>
</section>
<section>
<div class="segparte">
<div class="dentro">
<textarea class="mensaje" id="mensaje" spellcheck="none" rows="4" readonly></textarea>
<div class="text">
<h2 class="frase1" id="frase1">Ningún mensaje fue encontrado</h2>
<p class="frase2" id="frase2">Ingresa el texto que deseas encriptar o desencriptar.</p>
</div>
</div>
<div class="fuera">
<button class="copiar" id="copiar" onclick="copiar()" style="visibility: hidden;">
<img src="imagenes/image.ico"
width="40px"
height="40px">
</button>
</div>
</div>
</section>
</main>
<script src="script.js "></script>
</body>
</html>