-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.42 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
<!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">
<title>Encriptador de texto</title>
</head>
<header>
<h1>Encriptador de Texto con <span>JavaScript</span></h1>
</header>
<body>
<main class="main">
<section class="box-1">
<form id="form">
<label for="input-texto">Escribir con letras minusculas, sin acentos</label>
<textarea class="text" id="input-text" name="input-text" placeholder="Escribe aqui el texto" rows="5" cols="50"></textarea>
<div class="btn-container">
<input class="btn" id="btn-encrypt" type="submit" value="Encriptar" >
<input class="btn" id="btn-decrypt" type="submit" value="Desencriptar">
</div>
</form>
</section>
<section class="box-2">
<label for="text">Texto:</label>
<textarea class="text" id="output-text" name="output-text" rows="5" cols="50"></textarea>
<div class="btn-container">
<input class="btn" id="btn-copy" type="submit" value="Copiar texto" >
</div>
</section>
</main>
<footer class="footer">
<p>@FavioAlikhan</p>
</footer>
<script src="js/encrypt.js"></script>
</body>
</html>