-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 2.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="./favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon/favicon-32x32.png">
<!-- Fuentes -->
<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=Ubuntu:wght@300&display=swap" rel="stylesheet">
<!-- Iconos -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Hoja de estilos -->
<link rel="stylesheet" href="./styles.css">
<title>Challenge Encriptador</title>
</head>
<body>
<header>
<div class="div-header">
<a href="https://github.com/ibrahimhc19" target="_blank"><img class="logoGithub" src="./imagenes/github-Ibrahimhc19.png" alt="Logo usuario github Ibrahim Calzadilla"></a>
<a href="https://www.aluracursos.com/" target="_blank"><img class="logoOne" src="./imagenes/aluraoracle.png"
alt="Alura One Logo"></a>
</div>
</header>
<main>
<section class="container">
<div class="txt-wrapper">
<div>
<p id="aviso"> <i class="fa-solid fa-circle-exclamation"></i> Solo letras minúsculas y sin acentos</p>
<textarea class="paraEncriptar" cols="30" rows="10" placeholder="Introduce el texto acá"></textarea>
<textarea class="paraDesencriptar" cols="30" rows="10" disabled></textarea>
</div>
<div class=" botoes">
<button id="encriptar" class="btnclss">Encriptar</button>
<button id="desencriptar" class="btnclss">Desencriptar</button>
<button id="copy" class="toCopy btnclss" >Copiar</button>
</div>
</section>
</main>
<footer>
<div class="txt-container">
<p>Challenge ONE G5 - Encriptador de texto</p>
<a href="https://github.com/ibrahimhc19" target="_blank"><p>Desarrollado por Ibrahim Calzadilla Rada <i class="fa-brands fa-github"></i></p></a>
<p>Oracle Next Education - Alura 2023</p>
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>