-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
101 lines (92 loc) · 4.41 KB
/
aboutus.html
File metadata and controls
101 lines (92 loc) · 4.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adopt a Pet - FurBound</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
</head>
<body>
<header>
<nav>
<div class="logo">
<h1><i class="fas fa-paw"></i> FurBound</h1>
</div>
<div class="nav-toggle" id="navToggle">
<i class="fas fa-bars"></i>
</div>
<ul class="nav-links" id="navLinks">
<li><a href="index.html">Home</a></li>
<li><a href="adopt.html" >Adopt a Pet</a></li>
<li><a href="aboutus.html" class="active">About Us</a></li>
<li><a href="donate.html">Donate</a></li>
</ul>
</nav>
</header>
<main>
<section class="about-hero">
<div class="about-hero-content">
<h2>Our Story</h2>
<p>Connecting Pets with Loving Homes Since 2024</p>
</div>
</section>
<section class="about-content">
<div class="mission">
<h3>Our Mission</h3>
<p>At FurBound, we believe every pet deserves a loving home. Our mission is to connect abandoned, surrendered, and rescued animals with caring families, while educating the community about responsible pet ownership.</p>
</div>
<div class="story">
<h3>How We Started</h3>
<p>FurBound began when our founder volunteered at a local animal shelter and saw firsthand the number of wonderful pets waiting for homes. What started as a small foster network in 2024 has grown into a community of passionate volunteers, foster families, and supporters dedicated to animal welfare.</p>
<p>Today, we work with shelters across the region to find homes for hundreds of dogs, cats, and other pets each year.</p>
</div>
<div class="values">
<h3>Our Values</h3>
<ul>
<li><strong>Compassion:</strong> We treat every animal with kindness and dignity.</li>
<li><strong>Education:</strong> We promote responsible pet ownership and care.</li>
<li><strong>Community:</strong> We build connections between pets, adopters, and animal lovers.</li>
<li><strong>Transparency:</strong> We are open about our processes and how we use donations.</li>
</ul>
</div>
<div class="volunteer">
<h3>Join Our Mission</h3>
<p>We're always looking for passionate volunteers and foster families. If you'd like to help, please contact us directly.</p>
</div>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section about">
<h3><i class="fas fa-paw"></i> FurBound</h3>
<p>Connecting loving homes with pets in need since 2024</p>
<div class="social-links">
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
</div>
</div>
<div class="footer-section links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="adopt.html">Adopt a Pet</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="donate.html">Donate</a></li>
</ul>
</div>
<div class="footer-section contact">
<h3>Contact Us</h3>
<p><i class="fas fa-map-marker-alt"></i> 123 Pet Street, Chennai, India</p>
<p><i class="fas fa-phone"></i> (555) 123-4567</p>
<p><i class="fas fa-envelope"></i> info@furbound.com</p>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 FurBound. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>