-
Notifications
You must be signed in to change notification settings - Fork 0
/
pawfolio.html
68 lines (62 loc) · 2.25 KB
/
pawfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pawfolio | 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="pawfolio-hero">
<h2>Our Pawfolio</h2>
<p>Take a look at some of our happy clients and grooming transformations!</p>
</section>
<!-- Image Gallery Section -->
<section class="gallery">
<div class="gallery-grid">
<div class="gallery-item"><img src="images/dog1.jpg" alt="Dog Grooming Example 1"></div>
<div class="gallery-item"><img src="images/dog2.jpg" alt="Dog Grooming Example 2"></div>
<div class="gallery-item"><img src="images/dog3.jpg" alt="Dog Grooming Example 3"></div>
<div class="gallery-item"><img src="images/dog4.jpg" alt="Dog Grooming Example 4"></div>
<!-- Add more images as needed -->
</div>
</section>
<!-- Testimonials Preview Section -->
<section class="testimonials-preview">
<h3>Happy Pawrents</h3>
<div class="testimonial">
<p>"The best grooming experience! My pup looked amazing and felt so relaxed!"</p>
<h4>- Sarah & Daisy</h4>
</div>
<div class="testimonial">
<p>"So impressed with the attention to detail. We'll definitely be back!"</p>
<h4>- John & Max</h4>
</div>
</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>
</footer>
</body>
</html>