-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
107 lines (97 loc) · 3.48 KB
/
Copy pathservices.html
File metadata and controls
107 lines (97 loc) · 3.48 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services | HomeEase</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="services.js">
<link rel="icon" type="image/png" href="assets/logo 3.png">
</head>
<body>
<!-- ===== Navbar ===== -->
<nav class="navbar">
<div class="logo">
<img src="assets/logo 3.png" alt="HomeEase Logo">
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<!-- ===== Promo Line ===== -->
<div class="promo-line">
Bringing reliable home services straight to your doorstep 🚪✨. Right now only available for Bahria Town Rawalpindi.
</div>
<!-- ===== Services Page Content ===== -->
<section id="services" class="about">
<div class="about-container">
<div class="about-text">
<h2>Our <span>Services</span></h2>
<p>
At <b>HomeEase</b>, we provide a wide range of <em>home maintenance solutions</em>
designed to make your life easier. Our goal is to deliver fast, reliable,
and professional services right at your doorstep.
</p>
<p>
Whether it’s a small repair or a major task, our team of skilled
professionals is always ready to help. We focus on <span class="highlight">
quality workmanship, transparency, and customer satisfaction</span>.
</p>
<h3>✨ What We Offer:</h3>
<ul>
<li>🔧 Plumbing Services – Leak repairs, fittings, and installations</li>
<li>💡 Electrical Services – Wiring, switches, and appliance fixes</li>
<li>🪚 Carpentry – Furniture repair, woodwork, and fittings</li>
<li>🧹 Cleaning Services – Deep home & office cleaning</li>
<li>🎨 Painting Services – Interior & exterior painting</li>
</ul>
<!-- Book Button -->
<button id="bookBtn" class="btn">Book an Appointment</button>
</div>
<div class="about-image">
<img src="assets/logo.png" alt="Our Services">
</div>
</div>
</section>
<script>
document.getElementById("bookBtn").addEventListener("click", function() {
// Your WhatsApp number (with country code, no + or spaces)
const phoneNumber = "923001234567";
// Message
const message = "AOA, I need HomeEase service.";
// WhatsApp link
const url = `https://wa.me/${phoneNumber}?text=${encodeURIComponent(message)}`;
// Open WhatsApp
window.open(url, "_blank");
});
</script>
<!-- ===== Footer ===== -->
<footer>
<div class="footer-container">
<div class="footer-logo">
<h2>HomeEase</h2>
<p>Your trusted home service partner in Bahria Town, Rawalpindi.</p>
</div>
<div class="footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</div>
<div class="footer-contact">
<h3>Contact Us</h3>
<p>Email: support@homeease.com</p>
<p>Location: Bahria Town Phase 8, Rawalpindi</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 HomeEase. All Rights Reserved.</p>
</div>
</footer>
<script src="services.js"></script>
</body>
</html>