-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (37 loc) · 1.43 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
46
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Encriptador</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div>
<h1><img class="logo" src="logo/logo.png"></h1>
</div>
</header>
<main>
<div>
<section class="caja_principal">
<label for="texto"><textarea id="texto" class="input-padron" placeholder="Ingrese el texto aquí"></textarea></label>
<div class="atencion">
<img class="img_atencion" src="atencion/atencion.png"><p class="text_atencion"> Solo letras minúsculas y sin acentos</p>
</div>
<button id="encriptar" onclick="stopDefAction(event)">Encriptar</button>
<button id="desencriptar" onclick="stopDefAction(event)">Desencriptar</button>
</section>
</div>
<div>
<section class="caja_encriptado">
<label id="Texto_encriptado">Texto Encriptado</label>
<!--<input type="text" id="encriptado">-->
<button id="copiar" onclick="stopDefAction(event)">Copiar</button>
</section>
</div>
</main>
<footer>
</footer>
<script src="script.js" ></script>
</body>
</html>