-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
96 lines (85 loc) · 3.73 KB
/
about.html
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 | OhRahRah Exclusive Dog Grooming</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header class="header">
<img src="images/dog.png" alt="OhRahRah Logo" class="logo">
<h1>OhRahRah</h1>
<p>Exclusive Dog Grooming Birmingham</p>
<nav>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#gallery">Pawfolio</a></li>
<li><a href="#Dlog">Dlog</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section class="about-hero">
<h2>Meet the Heart Behind OhRahRah</h2>
<p>Passionately grooming pups with care and dedication.</p>
</section>
<!-- Introduction to OhRahRah -->
<section class="about-intro">
<h2>Welcome to OhRahRah</h2>
<p>OhRahRah was born from a love for animals and a desire to provide gentle, personalised grooming. Every session is crafted with patience and respect, ensuring each dog feels pampered and at ease.</p>
</section>
<!-- Meet the Groomer -->
<section class="meet-the-groomer">
<div class="groomer-content">
<div class="groomer-image">
<img src="images/groomer.jpg" alt="Meet the Groomer">
</div>
<div class="groomer-text">
<h2>Hi, I’m Amira!</h2>
<p>I'm the heart and hands behind OhRahRah. With years of experience and a lifelong love for dogs, my goal is to make every pup feel special. I believe grooming should be a positive experience, and I work one-on-one with each dog to ensure a calm and enjoyable session.</p>
<p>Whether it’s a simple trim or a luxurious spa treatment, I treat every pet like family, giving them the attention and care they deserve.</p>
</div>
</div>
</section>
<!-- Core Values -->
<section class="core-values">
<h2>Our Fur-losophy</h2>
<ul>
<li><strong>Gentleness</strong> - Treating every dog with patience and care.</li>
<li><strong>Quality</strong> - Using only the best products for safe and effective grooming.</li>
<li><strong>Personalisation</strong> - Tailoring each groom to fit the unique needs of each pet.</li>
</ul>
</section>
<!-- Why Choose OhRahRah? -->
<section class="why-choose">
<h2>Why Choose OhRahRah?</h2>
<p>OhRahRah is dedicated to providing a grooming experience that’s as unique as your pet. Our one-on-one, home-based setup allows for a stress-free environment where pets feel safe and cared for. With luxury products and a commitment to each pet's well-being, OhRahRah goes beyond grooming—it's a pampering experience.</p>
</section>
<!-- CTA -->
<section class="cta-section">
<p>Ready to give your pup the OhRahRah treatment? Contact us today to book a session!</p>
<a href="contact.html" class="cta-button">Book Now</a>
</section>
<!-- Footer -->
<footer class="footer">
<p>© 2024 OhRahRah Pet Care Services. All Rights Reserved.</p>
<ul class="footer-icons">
<li><a href="#"><i class="fab fa-instagram"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#"><i class="fab fa-tiktok"></i></a></li>
<li><a href="#"><i class="fas fa-envelope"></i></a></li>
</ul>
<section class="subscription-bar">
<h3>Your Pup Called!</h3>
<p>They want you to subscribe!</p>
<form action="your_subscription_handler.php" method="POST">
<input type="email" name="email" placeholder="Enter your email" required>
<button type="submit">Subscribe</button>
</form>
</section>
</footer>
</body>
</html>