-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
31 lines (31 loc) · 1.05 KB
/
home.html
File metadata and controls
31 lines (31 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fabio Bosio | Developer Consultant</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" class="active">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">Contact</a></li>
</ul>
</nav>
<main>
<h2>Welcome to My Website</h2>
<p>This is where I showcase my work, share insights, and connect with clients. Let's build something amazing together!</p>
</main>
<footer>
<p>© 2026 Fabio Bosio - All Rights Reserved</p>
</footer>
</body>
</html>