-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (49 loc) · 2.01 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<script src="https://kit.fontawesome.com/1852c762de.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ENCRIPTADOR</title>
</head>
<body>
<div class="flex">
<header class="logo-container">
<img src="img/Vector.png" alt="logo">
</header>
<main class="main">
<form action="" class="form">
<textarea placeholder="Ingrese el texto aquí" class="input-texto"></textarea>
<p style="margin: 0; display: none;" class="mensaje-alert">
<i class="fa-solid fa-circle-exclamation"></i>
<span style="margin-left: 10px;" ></span>
</p>
<div class="button-container">
<button class="btn encriptar">ENCRIPTAR</button>
<button class="btn desencriptar">DESENCRIPTAR</button>
</div>
</form>
</main>
<div class="aside-container">
<aside class="mensaje">
<div class="image-alert" >
<img src="img/Muñeco.png" class="img">
<div class="alert">
Ningun mensaje fue encontrado
</div>
</div>
<div class="caja-encriptada">
Ingresa el texto que desees encriptar o desencriptar
</div>
</aside>
</div>
</div>
<footer class="info-programer">
© Miguel Cuellar | 2022
</footer>
<script src="js/code.js"></script>
</body>
</html>