-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Encriptador de texto by Jaime Vargas</title>
<link rel="icon" type="image/png" href="images/icon.png">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<script src="funciones.js"></script>
<script src="script.js"></script>
</head>
<body>
<main>
<section class="seccion1">
<div class="logo"><img src="images/Logo.png" alt="logo"></div>
<section class="form">
<textarea class="textoIn" placeholder="Ingrese el texto aqui" autocapitalize="none" autofocus maxlength="400" required ></textarea>
<div class="botones">
<p><img src="images/exclamation.png"> Solo letras minusculas y sin acentos </p>
<input class="encriptar" type="submit" value="Encriptar" onclick="cript('encriptar')">
<input class="desencriptar" type="submit" value="Desencriptar"onclick="cript('desencriptar')">
</div>
</section>
</section>
<section class="seccion2">
<div class="forma">
</div>
</section>
</main>
<footer>
<p>Encriptador de texto desarrollado por Jaime Vargas</p>
</footer>
</body>
</html>