-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
96 lines (87 loc) · 2.98 KB
/
Copy pathabout.html
File metadata and controls
96 lines (87 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us | HomeEase</title>
<link rel="stylesheet" href="style.css">
<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>
<!-- ===== About Page Content ===== -->
<section id="mission" class="about">
<div class="about-container">
<!-- Left Side Text -->
<div class="about-text">
<h2>Our <span>Mission</span></h2>
<p>
At <b>HomeEase</b>, we started our journey in
<strong>Bahria Town, Islamabad</strong>, with one simple goal:
to make home maintenance <em>easy, reliable, and stress-free</em>.
</p>
<p>
Our mission goes beyond just fixing problems — we want to
<span class="highlight">transform the way people experience home services</span>.
Whether it's a plumber, electrician, or carpenter, we believe that
every household deserves skilled professionals they can trust.
</p>
<p>
While we are currently serving <b>Bahria Town</b>, our vision is
much bigger. We aim to expand <strong>HomeEase across all of Pakistan</strong>,
bringing the same level of quality, affordability, and convenience
to every city and community in the country.
</p>
<p>
Step by step, city by city — <b>HomeEase</b> is on a mission to become
Pakistan’s most trusted name in home services.
</p>
</div>
<!-- Right Side Image -->
<div class="about-image">
<img src="assets/logo.png" alt="Our Mission">
</div>
</div>
</section>
<!-- ====== 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="script.js"></script>
</body>
</html>