-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
65 lines (58 loc) · 2.7 KB
/
contacto.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contacto</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div id="loading-screen">
<div id="loading-text">LOADING...</div>
</div>
<header>
<h1>MI BLOG PERSONAL</h1>
<nav>
<ul>
<li><a href="index.html" onclick="showLoadingScreen(event)">Inicio</a></li>
<li><a href="biografia.html" onclick="showLoadingScreen(event)">Biografía</a></li>
<li><a href="blog.html" onclick="showLoadingScreen(event)">Blog</a></li>
<li><a href="contacto.html" onclick="showLoadingScreen(event)">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<h2>Formulario de contacto</h2>
<p>Puedes llenar el formulario y reibiré un correo electrónico con tu mensaje</p>
<form id="contact-form">
<label for="name">Nombre:</label>
<input type="text" id="name" name="name" required>
<label for="email">Correo Electrónico:</label>
<input type="email" id="email" name="email" required>
<label for="message">Mensaje (máx 500 caracteres):</label>
<textarea id="message" name="message" maxlength="500" required></textarea>
<div id="charCount">0/500 caracteres</div>
<button type="submit">Enviar</button>
<p id="error-message" style="color: red; display: none;">Por favor, introduce un correo electrónico válido.</p>
</form>
<p>También puedes contactarme por los links inferiores que te llevan a mi GitHub, mi LinkedIn o mi WhatsApp</p>
</main>
<footer>
<p class="copyright">© <span id="year"></span> Mi Blog Personal - DanCarCo</p>
<div class="social-links">
<a href="https://github.com/dancarco" target="_blank">
<img src="Images/github-icon.png" alt="GitHub" class="social-icon">
</a>
<a href="https://www.linkedin.com/in/daniel-carvajal-correa/" target="_blank">
<img src="Images/linkedin-icon.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://wa.me/573176582482" target="_blank">
<img src="Images/Whatsapp-icon.png" alt="WhatsApp" class="social-icon">
</a>
</div>
</footer>
<script type="text/javascript" src="https://cdn.emailjs.com/dist/email.min.js"></script>
<script src="scripts.js"></script>
</body>
</html>