-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (37 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
48 lines (37 loc) · 1.63 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Encriptador</title>
<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=Kode+Mono:wght@400..700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<img src="Logo.png" class="Logo" alt="logo de alura">
</header>
<main>
<section>
<textarea cols="50" rows="2" class="text-area" required placeholder="Ingresa el texto que deseas aquí"></textarea>
<div>
<h6 for="texto-primario" class="texto-final"> ⓘ Solo letras minúsculas y sin acentos</h6>
</div>
<div class="final">
<button class="btn-encriptar" onclick="btnEncriptar()">Encriptar</button>
<button class="btn-desencriptar" onclick="btnDesencriptar()">desencriptar</button>
</div>
</section>
<section class="Muñeco">
<img src="Muñeco.png" class="imagen-muñeco">
<textarea class="mensaje" id="mensaje-contenido" cols="20" rows="5" placeholder="no hay ningún mensaje"></textarea>
<button class="copiar"
id="bt-copiar"
onclick="copiarAlPortapapeles();">Copiar</button>
</section>
</main>
<script src="app.js"></script>
</body>
</html>