-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (43 loc) · 2.35 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
<!-- version 1.0.3-rc.1 -->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador de Texto</title>
<link rel="stylesheet" href="styles/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=Bruno+Ace+SC&family=Inconsolata:wght@200..900&display=swap" rel="stylesheet">
</head>
<body class="body">
<header>
<img class="logo" src="assets/encript-logo.png" alt="Logo Encriptador de Texto"></img>
<p class="parrafo__titulo">Encriptador de Texto</p>
</header>
<main>
<section>
<textarea class="texto" id="ingresoTexto" cols="40" rows="10" placeholder="Ingresa el texto aquí"></textarea>
<div>
<h6 class="informacion"><img src="assets/advt.png" alt="Logo Advertencia"></img> Ingresar sólo letras minúsculas, sin tildes, y sin caracteres especiales</h6>
</div>
<div class="botones">
<button class="boton__encriptar" type="button" onclick="botonEncriptar()">Encriptar</button>
<button class="boton__desencriptar" type="button" onclick="botonDesencriptar()">Desencriptar</button>
</div>
</section>
<section>
<textarea readonly class="texto__no" id="textoEncriptado" cols="40" rows="10" placeholder="Ningún mensaje fue encontrado
Ingresa el texto que desees encriptar o desencriptar"></textarea>
<div class="botones">
<button class="boton__copiar" type="button" onclick="botonCopiar()">Copiar Texto</button>
</div>
</section>
</main>
<footer class="footer">
<p class="foot">Desarrollado por Santiago Gabriel Cabrera (2024)</p>
<p class="foot"><a href="https://www.aluracursos.com/" target=_blank>| Alura Latam |</a> <a href="https://www.oracle.com/lad/education/oracle-next-education/" target=_blank>| Oracle Next Education |</a></p>
</footer>
<script src="app/app.js"></script>
</body>
</html>