-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.html
More file actions
91 lines (88 loc) · 3.17 KB
/
service.html
File metadata and controls
91 lines (88 loc) · 3.17 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
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - WebDesign</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="#">WebDesign</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="Index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item"><a class="nav-link active" href="services.html">Services</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<section>
<h1>Our Services</h1>
<p>Explore the wide range of services we offer to help your business grow.</p>
<div class="container mt-4">
<div class="row">
<div class="col-md-4">
<h3>Web Design</h3>
<p>Creative and responsive web designs tailored to your needs.</p>
</div>
<div class="col-md-4">
<h3>Development</h3>
<p>Custom web applications and solutions to enhance your business.</p>
</div>
<div class="col-md-4">
<h3>SEO</h3>
<p>Optimize your online presence with our SEO expertise.</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<!-- About Section -->
<div class="col-md-4">
<h5>About Us</h5>
<p>We are dedicated to providing the best services and support to help your business grow.</p>
</div>
<!-- Quick Links -->
<div class="col-md-4">
<h5>Quick Links</h5>
<ul class="footer-links">
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="privacy.html">Privacy Policy</a></li>
</ul>
</div>
<!-- Social Media -->
<div class="col-md-4">
<h5>Follow Us</h5>
<div class="social-icons">
<a href="https://facebook.com" target="_blank">Facebook</a> |
<a href="https://twitter.com" target="_blank">Twitter</a> |
<a href="https://instagram.com" target="_blank">Instagram</a>
</div>
<p>Email: info@webdesign.com</p>
<p>Phone: +255 123 456 789</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-12 text-center">
<p>© 2024 WebDesign. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>