-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.HTML
More file actions
107 lines (100 loc) · 2.87 KB
/
Copy pathindex.HTML
File metadata and controls
107 lines (100 loc) · 2.87 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="es-mx">
<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="apple-touch-icon"
sizes="180x180"
href="./assets/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/favicon-16x16.png"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css" />
<title>Encriptador de Texto</title>
</head>
<body>
<header>
<a href="./">
<img src="./assets/Vector.png" alt="Logo Alura" class="logo" />
</a>
</header>
<div class="container">
<div class="subcontainer1">
<textarea
name="texto"
id="entradaTexto"
cols="30"
rows="10"
placeholder="Ingrese el texto aquí"
></textarea>
<div class="group1">
<div class="advertising">
<figure class="adv">
<img
src="./assets/Vector interrogacion.png"
alt="signo de advertencia"
/>
<p>Solo letras minúsculas y sin acentos</p>
</figure>
</div>
<div class="buttons">
<button class="primary-button encriptar">Encriptar</button>
<button class="secondary-button desencriptar">Desencriptar</button>
</div>
</div>
</div>
<div class="subcontainer2">
<div class="card-container">
<div class="card">
<div class="card-body">
<img src="assets/Muñeco.png" alt="Muñeco" />
<h3 class="card-title">Ningún mensaje fue encontrado</h3>
<p class="card-text">
Ingresa el texto que deseas encriptar o desencriptar.
</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<div id="creatorName">
By Edwin Abris
</div>
<div id="social-medias">
<ul>
<li>
<a href="https://github.com/edabris">
<img src="./assets/github.png" alt="github" />
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/edwin-abris/">
<img src="./assets/linkedin.png" alt="linkedin" />
</a>
</li>
</ul>
</div>
</footer>
<script src="app.js"></script>
<script src="app.js" defer></script>
</body>
</html>