-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.24 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 lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<script src="script.js">
</script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Challenge 1</title>
</head>
<body>
<div class="container">
<div class="logo">
<img class="logoimg" src="challengeimg/logo.png">
</div>
<div class="left">
<textarea class="text-input" id="inputTexto" placeholder="Ingresa el texto aqui"></textarea>
</div>
<div class="right">
<img src="challengeimg/munheco.png" id="imgDer">
<h1 id="texto">Ningun mensaje fue encontrado</h1>
<textarea name="texto2" id="texto2" cols="30" overflow - wrap>Ingresa el texto que desees encriptar o desencriptar</textarea>
<button id="copiar" type="button" name="button" onclick="copy()">Copiar</button>
</div>
<div class="left-button">
<p>solo letras minusculas y sin acentos</p>
<button type="button" id="btn-encriptar" onclick="encriptar()">Encriptar</button>
<button type="button" id="btn-desencriptar" onclick="desencriptar()">Desencriptar</button>
</div>
</div>
<footer class="pieDePagina">Candela Navas Orlando David</footer>
</body>
</html>