-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (59 loc) · 2.04 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/styles.css">
<title>Encriptador</title>
</head>
<body>
<header>
<a href="index.html"><img id="logo" src="images/Logo.png" alt="logo"></a>
</header>
<main>
<section class="container container-input">
<textarea class="text input"
type="text"
rows="9"
placeholder="Ingrese texto aqui"
></textarea>
<div id="container-sugerencia">
<img id="exclamacion" src="images/exclamation.png">
<p id="sugerencia"> Solo letras minúsculas y sin acentos</p>
</div>
<div id="container-buttons">
<input id="Encriptar"
type="button"
value="Encriptar"
>
<input id="Desencriptar"
type="button"
value="Desencriptar"
>
</div>
</section>
<section class="container container-output">
<div id="espacio-output">
<img id="imagen-muñeco" src="images/Muñeco.png" alt="Muñeco">
<textarea class="text output"
type="text"
rows="3"
placeholder="No se ha encontrado un texto"
readonly
></textarea>
<p id="texto-output">Ingresa el texto que desees encriptar o desencriptar.</p>
</div>
<input id="copiar"
type="button"
value="copiar"
>
</section>
</main>
<div id="footer">
<a href="https://alfonsinadvp.web.app/" target="_blank"><p>© Copyright YAG - 2022</p></a>
</div>
<script src="code.js"></script>
</body>
</html>