-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_me.html
76 lines (65 loc) · 2.4 KB
/
contact_me.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
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Contact Javier Guinot - Video Game Developer">
<title>Contact Me</title>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="title">
<a href="index.html"><span>MyPortfolio_</span></a>
</div>
</header>
<main>
<section id="contact">
<h2>Contact Me</h2>
<form id="contact-form" onsubmit="sendEmail(event)">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required autocomplete="name">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required autocomplete="email">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
<button type="submit" class="btn-send">Send</button>
</form>
</section>
</main>
<footer>
<div class="contact-info">
<a href="tel:+34642187996">
<i class="fas fa-phone"></i> +34 642 187 996
</a>
<a href="mailto:[email protected]" target="_blank">
<i class="fas fa-envelope"></i> [email protected]
</a>
</div>
<div class="contact-info">
<a href="https://github.com/GitJVGuinot" target="_blank">
<i class="fab fa-github"></i> GitJVGuinot
</a>
<a href="https://www.linkedin.com/in/javier-guinot-almenar-7b288027a" target="_blank">
<i class="fab fa-linkedin"></i> Javier Guinot
</a>
</div>
<div class="contact-info">
<a href="https://www.google.com/maps/search/?api=1&query=Valencia" target="_blank">
<i class="fas fa-map-marker-alt"></i> Valencia, Comunidad Valenciana
</a>
</div>
<p>© 2024 Javier Guinot</p>
</footer>
<!-- Referencia a tu archivo script.js -->
<script src="assets/js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@emailjs/browser@3/dist/email.min.js"></script>
<script>
(function () {
emailjs.init("hfgKxpOi2zv3KWsCP"); // Reemplaza con tu public key
})();
</script>
</body>
</html>