-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (65 loc) · 2.02 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
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="pt-br">
<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>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="titulo">CÓDIGO SECRETO</h1>
<main class="main">
<section class="form box">
<label for="input-texto">Solo letras minúsculas, sin acento</label>
<input class="text-input" type="text" name="input-texto" id="input-texto" placeholder="Ingrese el texto aqui">
<input class="btn" type="submit" value="encriptar!" id="btn-encriptar">
<input class="btn" type="submit" value="desencriptar!" id="btn-desencriptar">
</section>
<section class="msg box">
<h2 id="">Mensaje encriptada:</h2>
<input class="text-input" type="text" id="msg"></input>
<input class="btn" type="submit" value="copiar" id="btn-copy">
</section>
</main>
<br>
<br>
<footer>
<div class="container-footer-all">
<div class="container-body">
<div class="colum1">
<h1>Acerca de este proyecto</h1>
<p>
Primer Challenge del proyecto ONE - Oracle Next Education
con Alura LATAM. Lógica de programación.
</p>
</div>
<div class="colum2">
<h1>Redes sociales</h1>
<div class="row">
<img scr="">
<label>Sigame en Linkedin</label>
</div>
<div class="row">
<img scr="">
<label>Sigame en GitHub</label>
</div>
</div>
<div class="colum3">
<h1>Información de contacto</h1>
<div class="row">
<img scr="">
<label>evelynah97@gmail.com</label>
</div>
</div>
<div class="container-footer">
<div class="copyright">
© 2022 Todos los derechos Reservados | <a href=""> Evelyn</a>
</div>
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>