-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.13 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
<!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="utils/normalize.css" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="responsive.css" />
<title>Encriptador de texto</title>
</head>
<body>
<header>
<img src="public/logo.svg" alt="Logo" />
</header>
<section id="encryptor">
<textarea
type="text"
id="inputArea"
placeholder="Ingrese el texto aquí"
></textarea>
<p>
<img src="public/infoIcon.svg" alt="info" /> Solo letras minúsculas y
sin acentos
</p>
<article>
<button id="encryptBtn">Encriptar</button>
<button id="decryptBtn">Desencriptar</button>
</article>
</section>
<aside>
<div id="response"></div>
<button id="copyBtn">Copiar</button>
</aside>
<footer>Creado por <span>Cris</span> challenge 1</footer>
<script src="main.js" type="module"></script>
</body>
</html>