-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1015 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Infográfico Encriptador</title>
</head>
<body>
<main>
<section class="contenedor">
<textarea id="texto-encriptado" class="campo-texto" placeholder="Texto a encriptar"></textarea>
<div class="btn">
<button class="BtnEncriptar" onclick="btnEncriptar()">Cifrar</button>
<button class="BtnDesencriptar" onclick="btnDesencriptar()">Descrifrar</button>
</div>
<textarea id="campo-mensaje" class="mensaje"></textarea>
</section>
</main>
<script src="app.js"></script>
</body>
<footer>
<section class="pie">
<p class="nombre">Felipe Montero Jimenez</p>
<p class="año">2024 </p>
</section>
</footer>
</html>