-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
44 lines (44 loc) · 1.57 KB
/
services.html
File metadata and controls
44 lines (44 loc) · 1.57 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
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - 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" class="active">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h2>What I Offer</h2>
<ul>
<li>
<h3>Web Development</h3>
<p>Building scalable and robust web applications using state-of-the-art frameworks like .NET and Drupal.</p>
</li>
<li>
<h3>Technical Consulting</h3>
<p>Providing expert advice on project architecture, code quality, and developer workflows to streamline your software development process.</p>
</li>
<li>
<h3>Custom Solutions</h3>
<p>Creating tailored solutions that fit your unique business needs and goals, from plugins to full-stack applications.</p>
</li>
</ul>
</main>
<footer>
<p>© 2026 Fabio Bosio - All Rights Reserved</p>
</footer>
</body>
</html>