-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2.12 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
<!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">
<title>Challenge-Alura</title>
<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" />
</head>
<body>
<header>
<img src="img/logo.svg" alt="Logo Alura" class="img-logo">
<h1>Challenge encoder y decoder</h1>
</header>
<main class="contenido">
<div class="wrapper">
<div class="wave">
</div>
</div>
<section class="input">
<div class="input-textarea">
<textarea autofocus name="" id="input-text" class="input-text" cols="30" rows="6" placeholder="Ingrese su texto a encriptar" onkeyup="return minuscula(this);"></textarea>
</div>
<div class="input-contenido">
<p><span class="material-symbols-outlined">
error
</span>No se aceptan mayúsculas ni acentos.</p>
<div class="input-botones">
<button id="input-btn-en" class="input-btn" type="button" onclick="encodefuncion()">
Encriptar
</button>
<button id="input-btn-des" class="input-btn" type="button" onclick="decoderfuncion()">
Desencriptar
</button>
</div>
</div>
</section>
<section class="output">
<div id="sinmensaje">
<p id="msg-out" class="msg-out">El mensaje es:</p>
</div>
<button class="input-btn input-btn-copy" id="copiar" type="button" onclick="copiar()">Copiar</button>
</section>
</main>
<footer>
<p>Elaborado por: Gonzalo Guajardo.</p>
<!-- <br><p>©Copyright Challenge Alura 2023.</p> -->
</footer>
<script src="script.js"></script>
</body>
</html>