-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 2.05 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
<!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">
<link rel="stylesheet" href="reset.css"/>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<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=Inter:wght@400&display=swap" rel="stylesheet">
<script src="script.js"></script>
<title>Encriptador de texto - Reto Alura</title>
</head>
<body>
<header>
<h1>RETO DE CÓDIGO - ALURA ONE</h1>
<h2>ENCRIPTADOR Y DESENCRIPTADOR DE TEXTO</h2>
</header>
<main>
<div class="container">
<img src="resources/logoAlura.png" alt="Logo Alura" class="logo-Alura">
<section class="Texto-Encriptar">
<textarea type="text" class="input-texto" placeholder="Ingrese el texto aquí"></textarea>
<p class="mensaje-restriccion"><span class="material-symbols-outlined" id="warning">error</span>Solo letras minúsculas y si acentos</p>
<div class="botones">
<button class="encriptar-texto">Encriptar</button>
<button class="desencriptar-texto">Desencriptar</button>
</div>
</section>
<section class="Texto-Desencriptar">
<img src="resources/Muñeco.png" class="muneco"/>
<p class="ningun-sms">Ningun mensaje fue encontrado</p>
<p class="ingrese-texto">Ingrese el texto que desee encriptar o desencriptar</p>
</section>
</div>
</main>
<footer>
<h1>Luis Sebastian Santacruz López</h1>
<a href="https://github.com/sebassurkuna"><img src="resources/github.png"/>/sebassurkuna</a>
</footer>
</body>
</html>