-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 3.2 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
61
62
63
64
<!DOCTYPE html>
<lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/svg+xml" href="/resources/images/favicon.ico" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Fonts -->
<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@300;400;500;700;900&display=swap" rel="stylesheet">
<!-- Styles-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<link rel="stylesheet" href="style.css">
<title>Encriptador de texto</title>
</head>
<body>
<header class="header">
<a href="https://www.aluracursos.com" target="_blank" class="link-logo">
<img src="./resources/images/alura-logo.svg" alt="Logo Alura" class="alura-logo">
</a>
</header>
<main class="main">
<section class="principal-content">
<div class="text-container">
<textarea name="text" id="text" cols="" rows="" placeholder="Inserte el texto aqui"></textarea>
</div>
<div class="buttons-container">
<div class="warning">
<img src="./resources/images/warning-signal.svg" alt=""><p class="warning-text">Solo letras minúsculas y sin acentos</p>
</div>
<div class="buttons">
<button class="btn encrypt">Encriptar</button>
<button class="btn decrypt">Desencriptar</button>
</div>
</div>
</section>
<section class="card__container">
<textarea name="encrypted-text" id="encrypted-textarea" cols="10" rows="30" class="encrypted-textarea hidden" onkeyup="showTextarea(this.value)"></textarea>
<div class="card__content">
<img src="./resources/images/figura.svg" alt="" class="card__figura">
<h2 class="card__h2">Ningún mensaje fue encontrado</h2>
<p class="card__p">Ingresa el texto que desees encriptar o desencriptar.</p>
</div>
<button class="copy">Copiar</button>
</section>
</main>
<footer class="flex">
<section class="text-icon">
<a href="https://www.linkedin.com/in/orlibetdungonzalez/" target="_blank" rel="noopener">
<i class="fab fa-linkedin-in" style="--color-icon: #de500e; --font: 1.5rem"></i>
<i class="" style="color: #74C0FC;"></i>
</a>
<a href="https://github.com/Orliluq/" target="_blank" rel="noopener">
<i class="bx bxl-github" style="--color-icon: #412344; --font: 1.5rem"></i>
</a>
</section>
<section class="flex">
© Desarrollado por Orlibet Dun, Grupo 6. ONE Oracle - Alura Latam 2024
</section>
</footer> <!--footer desarrollador-->
<script src="./index.js"></script>
</body>
</html>