-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
33 lines (33 loc) · 1.21 KB
/
contact.html
File metadata and controls
33 lines (33 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - Fabio Bosio</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header>
<img src="assets/images/logo.png" alt="Fabio Bosio Logo" class="logo">
<h1>Hi, I'm Fabio Bosio</h1>
<p>Developer Consultant | Creating Scalable, Innovative, and Robust Solutions</p>
</header>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
</nav>
<main>
<h2>Get in Touch</h2>
<p>If you have any questions or want to discuss your project, feel free to reach out!</p>
<p><strong>Email:</strong> <a href="mailto:example@fabiobosio.com">example@fabiobosio.com</a></p>
<p>Alternatively, you can connect with me on: <a href="https://linkedin.com/in/fabiobosio">LinkedIn</a></p>
</main>
<footer>
<p>© 2026 Fabio Bosio - All Rights Reserved</p>
</footer>
</body>
</html>