Skip to content

Commit e682c3a

Browse files
author
DanCarCo
committed
Agregué link de cotnacto a través de WhatsApp
1 parent cb91226 commit e682c3a

File tree

8 files changed

+78
-1
lines changed

8 files changed

+78
-1
lines changed

Images/Vector.png

409 Bytes
Loading

Images/Whatsapp-icon.png

13.2 KB
Loading

Images/binario.png

252 KB
Loading

biografia.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ <h2>Daniel Carvajal Correa</h2>
4747
<a href="https://www.linkedin.com/in/daniel-carvajal-correa/" target="_blank">
4848
<img src="Images/linkedin-icon.png" alt="LinkedIn" class="social-icon">
4949
</a>
50+
<a href="https://wa.me/573176582482" target="_blank">
51+
<img src="Images/Whatsapp-icon.png" alt="WhatsApp" class="social-icon">
52+
</a>
5053
</div>
5154
</footer>
5255

blog.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,9 @@ <h3>Conclusión</h3>
137137
<a href="https://www.linkedin.com/in/daniel-carvajal-correa/" target="_blank">
138138
<img src="Images/linkedin-icon.png" alt="LinkedIn" class="social-icon">
139139
</a>
140+
<a href="https://wa.me/573176582482" target="_blank">
141+
<img src="Images/Whatsapp-icon.png" alt="WhatsApp" class="social-icon">
142+
</a>
140143
</div>
141144
</footer>
142145

contacto.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ <h1>MI BLOG PERSONAL</h1>
2424
</nav>
2525
</header>
2626
<main>
27-
<h2>Contacto</h2>
27+
<h2>Formulario de contacto</h2>
28+
<p>Puedes llenar el formulario y reibiré un correo electrónico con tu mensaje</p>
2829
<form id="contact-form">
2930
<label for="name">Nombre:</label>
3031
<input type="text" id="name" name="name" required>
@@ -39,6 +40,7 @@ <h2>Contacto</h2>
3940
<button type="submit">Enviar</button>
4041
<p id="error-message" style="color: red; display: none;">Por favor, introduce un correo electrónico válido.</p>
4142
</form>
43+
<p>También puedes contactarme por los links inferiores que te llevan a mi GitHub, mi LinkedIn o mi WhatsApp</p>
4244
</main>
4345

4446
<footer>
@@ -50,6 +52,9 @@ <h2>Contacto</h2>
5052
<a href="https://www.linkedin.com/in/daniel-carvajal-correa/" target="_blank">
5153
<img src="Images/linkedin-icon.png" alt="LinkedIn" class="social-icon">
5254
</a>
55+
<a href="https://wa.me/573176582482" target="_blank">
56+
<img src="Images/Whatsapp-icon.png" alt="WhatsApp" class="social-icon">
57+
</a>
5358
</div>
5459
</footer>
5560

encriptador.html

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
<!DOCTYPE html>
2+
<html lang="es">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Encriptador de Texto</title>
7+
<link rel="stylesheet" href="styles.css">
8+
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
9+
</head>
10+
<body>
11+
<div id="loading-screen">
12+
<div id="loading-text">LOADING...</div>
13+
</div>
14+
15+
<header>
16+
<h1>ENCRIPTADOR DE TEXTO</h1>
17+
<nav>
18+
<ul>
19+
<li><a href="index.html" onclick="showLoadingScreen(event)">Inicio</a></li>
20+
<li><a href="biografia.html" onclick="showLoadingScreen(event)">Biografía</a></li>
21+
<li><a href="blog.html" onclick="showLoadingScreen(event)">Blog</a></li>
22+
<li><a href="contacto.html" onclick="showLoadingScreen(event)">Contacto</a></li>
23+
<li><a href="encriptador.html" onclick="showLoadingScreen(event)">Encriptador</a></li>
24+
</ul>
25+
</nav>
26+
</header>
27+
<main>
28+
<img class="Avatar" src="Images/binario.png" alt="Avatar creado con el sistema Memoji de Apple, simulando ser yo">
29+
<h2>Encriptador de texto</h2>
30+
<section class="ingreso-texto">
31+
<textarea id="mensaje" placeholder="Ingrese la frase que desea encriptar o desencriptar"></textarea>
32+
<p class="parrafo">
33+
<img src="Images/Vector.png" alt="Instrucción">
34+
Solo letras minúsculas, sin acentos y sin caracteres especiales
35+
</p>
36+
<div class="botones">
37+
<button id="encriptar" aria-label="Encriptar texto">Encriptar</button>
38+
<button id="desencriptar" aria-label="Desencriptar texto">Desencriptar</button>
39+
<button id="copiar" aria-label="Copiar resultado">Copiar</button>
40+
</div>
41+
</section>
42+
43+
<section class="resultado-texto">
44+
<textarea id="resultado" placeholder="Resultado" readonly></textarea>
45+
</section>
46+
</main>
47+
48+
<footer>
49+
<p class="copyright">&copy; <span id="year"></span> Mi Blog Personal - DanCarCo</p>
50+
<div class="social-links">
51+
<a href="https://github.com/dancarco" target="_blank">
52+
<img src="Images/github-icon.png" alt="GitHub" class="social-icon">
53+
</a>
54+
<a href="https://www.linkedin.com/in/daniel-carvajal-correa/" target="_blank">
55+
<img src="Images/linkedin-icon.png" alt="LinkedIn" class="social-icon">
56+
</a>
57+
</div>
58+
</footer>
59+
60+
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
61+
<script src="scripts.js"></script>
62+
</body>
63+
</html>

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ <h2>DanCarCo</h2>
3838
<a href="https://www.linkedin.com/in/daniel-carvajal-correa/" target="_blank">
3939
<img src="Images/linkedin-icon.png" alt="LinkedIn" class="social-icon">
4040
</a>
41+
<a href="https://wa.me/573176582482" target="_blank">
42+
<img src="Images/Whatsapp-icon.png" alt="WhatsApp" class="social-icon">
43+
</a>
4144
</div>
4245
</footer>
4346

0 commit comments

Comments
 (0)