-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 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
65
66
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Encriptador de texto</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
</head>
<body>
<header>
<nav>
<img src="img/logo.png" alt="alura-logo" />
<button class="dark-mode-toggle" id="theme-btn" onclick="toggleDarkMode()">
<span class="material-icons" id="theme-icon">
light_mode
</span>
</button>
</nav>
</header>
<main>
<section>
<article>
<form>
<textarea
name="text-input"
id="text-input"
placeholder="Ingrese texto acá"
></textarea>
<div>
<img src="img/alert.png" alt="alert" />
<small>Ingresá texto sin símbolos y sin acentos</small>
</div>
<button type="submit">Encriptar</button>
<button type="submit">Desencriptar</button>
</form>
</article>
</section>
<section>
<article id="not-found">
<img src="img/not-found.png" alt="text-not-found" />
<h2>No se encontró ningún texto</h2>
<p>Ingresá el texto que quieras encriptar o desencriptar</p>
</article>
</section>
</main>
<footer>
<h1>Cristian Emanuel Recabarren - Full Stack Developer</h1>
<ul>
<li>
<a href="https://www.linkedin.com/in/recabarren-cristian/" target="_blank" rel="noopener">LinkedIn</a>
</li>
<li>
<a href="https://github.com/bit-rec98" target="_blank" rel="noopener">GitHub</a>
</li>
<li>
<a href="https://uxcristian.netlify.app/" target="_blank" rel="noopener">Portfolio</a>
</li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>