forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
183 lines (175 loc) · 6.04 KB
/
Contact.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Us - WildCard</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- Font Awesome Icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/css/contact.css" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Header -->
<header class="navbar navbar-expand-lg navbar-light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="logo.png" alt="" width="50" />
WildCard
</a>
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="donate.html">Donate</a>
</li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="contact.html">Contact</a>
</li>
</ul>
</div>
</header>
<!-- Main Content: Contact Section -->
<section class="contact-section">
<div class="container d-flex align-items-center justify-content-center vh-100">
<div class="row g-5 align-items-center">
<div class="col-lg-6 contact-info">
<h1>Get in Touch</h1>
<p>
If you have any questions, feel free to reach out to us. We're
here to help and protect wildlife!
</p>
<p>
<i class="fas fa-envelope"></i>
</p>
<p>
<i class="fas fa-phone"></i>
+91 00000 00000
</p>
<p>
<i class="fas fa-map-marker-alt"></i>
India
</p>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
<div class="col-lg-6 contact-form">
<form action="mailto:[email protected]" method="POST">
<div class="mb-3">
<label for="name" class="form-label">Your Name</label>
<input
type="text"
class="form-control"
id="name"
placeholder="Your Name"
required
/>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email Address</label>
<input
type="email"
class="form-control"
id="email"
placeholder="Your Email"
required
/>
</div>
<div class="mb-3">
<label for="message" class="form-label">Your Message</label>
<textarea
class="form-control"
id="message"
rows="5"
placeholder="Your Message"
required
></textarea>
</div>
<button type="submit" class="btn btn-green btn-block">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer id="footer" class="footer">
<div class="container footer-container">
<div class="footer-left">
<h3 class="logo">WildCard</h3>
<p>
WildCard is dedicated to creating sustainable environmental
solutions and preserving the planet. Join us in our mission to
foster a greener world for future generations.
</p>
</div>
<div class="footer-middle">
<h4>Quick Links</h4>
<div class="quick-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="donate.html">Donate</a></li>
</ul>
</div>
</div>
<div class="footer-right">
<form action="review.html" class="rating-form">
<button type="submit" class="btn btn-review">🌟 Rate Us</button>
</form>
<div class="email-subscribe">
<form action="#">
<input
type="email"
class="email-input"
placeholder="Your email address"
required
/>
<button type="submit" class="btn btn-subscribe">Subscribe</button>
</form>
</div>
</div>
</div>
<div class="footer-bottom">
<p>
© 2024
<a href="/copyright">WildCard</a>
All Rights Reserved
</p>
<p>
<a class="footer-link" href="/terms-of-use">Terms of Service</a>
|
<a class="footer-link" href="/privacy-policy">Privacy Policy</a>
</p>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>