-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (44 loc) · 1.45 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" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador de texto</title>
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="Style.css" />
<link rel="icon" href="../Contenido/icono.ico" />
</head>
<body>
<header>
<div class="caja">
<div class="logo">
<img src="../Contenido/Logo.svg" alt="logo de alura">
</div>
</div>
<div class="bienvenida">
<h1>Welcome</h1>
</div>
</header>
<main>
<section class = "input">
<textarea class = "textoEncriptado" placeholder=" Ingrese el texto aqui..."></textarea>
</section>
<section class="output">
<textarea class ="textoDesencriptado" readonly></textarea>
</section>
<section class="buttons">
<input type="image" src = "../Contenido/advertencia.svg" class="warning"></input>
<div class = "botonesPrincipales">
<button class = "botonEncriptar" onclick="encriptarTexto()"> Encriptar</button>
<button class = "botonDesencriptar" onclick="desencriptarTexto()"> Desencriptar</button>
</div>
<div class = "copyButton">
<button class = "botonCopiar" onclick="copiarContenido()"> Copiar</button>
</div>
</section>
</main>
<footer>
</footer>
<script src="script1.js"></script>
</body>
</html>