-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.37 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.37 KB
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador de Texto</title>
<meta name="description" content="Programa que encripta o decencripta un texto.">
<meta name = "author" content="R. Joseph M. Ch.">
<link rel="stylesheet" href="css/reset_styles.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="cabezera">
<a href="index.html" title="Volviendo al inicio">
<img src="img/Logo.png" alt="Logo">
</a>
</header>
<main class="cuerpo">
<div class="texto-area">
<textarea name="Ingreso Texto" id="texto-original" cols="30" rows="10"></textarea>
</div>
<div class="imagen-area">
<picture class="pintura">
<img src="img/Muñeco.png" alt="Muñeco">
<p>Ningún mensaje fue encontrado</p>
<p>Ingresa el texto que desees encriptar o desencriptar</p>
</picture>
</div>
</main>
<footer>
<p>Solo letras minúsculas y sin acentos</p>
<div class="botones-area">
<button>Encriptar</button>
<button>Desencriptar</button>
</div>
</footer>
<script src="js/app.js"></script>
</body>
</html>