-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (45 loc) · 1.29 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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Encriptador-Chalenge-Oracle</title>
<link rel="stylesheet" type="text/css" href="style/style.css">
</head>
<body>
<header>
<img src="image/Vector.png" alt="vector de Alura">
</header>
<main>
<section class="txt" >
<textarea name="text" class="text-enc" placeholder="Ingrese texto aqui."></textarea>
<div class="btn-input">
<input type="button" value="Encriptar" class="btn-encr" onclick="encriptar()">
<input type="button" value="Desencriptar" class="btn-descr" onclick="desencriptar()">
</div>
</section>
<section class="txt-encoder" >
<div class="container-img">
<img src="image/Muñeco.png" alt="muñeco alura" >
</div>
<div class="text-h3" >
<h3>Ningun mensaje fue encontrado</h3>
</div>
<div class="text-p" >
<p>ingrese el texto que desea encriptar o desencriptar</p>
</div>
<div class="textoE ocultar">
<h3>Mensaje encriprado: </h3>
<p class="resultado" id="resultado"></p>
</div>
<div class="copy">
<input type="button" value="Copy" class="btn-copy" onclick= copy()>
</div>
</section>
</main>
<footer>
<p>Todos los derechos reservados Alura y Pierini Nahuel</p>
</footer>
<script src="ajax\script.js" ></script>
</body>
</html>