-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
263 lines (236 loc) · 7.8 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
}
.container {
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}
.heading {
text-align: center;
margin-bottom: 30px;
}
.heading h1 {
font-size: 36px;
color: #333;
}
.heading span {
color: #e63946;
}
.contact-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-bottom: 40px;
}
.contact-box {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
text-align: left;
}
.contact-box h3 {
font-size: 18px;
margin-bottom: 10px;
color: #333;
}
.contact-box p {
font-size: 14px;
color: #555;
line-height: 1.6;
margin: 5px 0;
}
.contact-box i {
font-size: 20px;
color: #e63946;
margin-right: 10px;
}
.form-box {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
}
.form-box input,
.form-box textarea {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}
.form-box textarea {
resize: none;
height: 100px;
}
.form-box button {
padding: 10px 20px;
background: #e63946;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background 0.3s ease;
}
.form-box button:hover {
background: #c02634;
}
.info-section {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-bottom: 20px;
text-align: center;
}
.info-card {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px;
transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth scaling and shadow change */
cursor: pointer;
}
.info-card img {
margin-bottom: 10px;
}
.info-card h4 {
font-size: 16px;
margin-bottom: 10px;
color: #333;
}
.info-card p {
font-size: 14px;
color: #555;
margin-bottom: 1px;
}
.info-card a {
display: inline-block;
font-size: 14px;
color: #e63946;
text-decoration: none;
font-weight: bold;
}
.info-card a:hover {
text-decoration: underline;
}
.info-card:hover{
transform: scale(1.05); /* Enlarge slightly on hover */
box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
background-color: rgb(255, 248, 220); /* Slight color change on hover */
}
.map {
width: 100%;
height: 300px;
background: url('https://via.placeholder.com/1200x300') no-repeat center center/cover;
border-radius: 8px;
margin-bottom: 40px;
}
.newsletter {
background: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
text-align: center;
}
.newsletter p {
font-size: 16px;
margin-bottom: 15px;
color: #555;
}
.newsletter input {
padding: 10px;
width: 70%;
border: 1px solid #ddd;
border-radius: 5px;
margin-right: 10px;
font-size: 14px;
}
.newsletter button {
padding: 10px 20px;
background: #007bff;
color: #fff;
border: none;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
font-size: 14px;
}
.newsletter button:hover {
background: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<div class="heading">
<h1>Get in <span>touch</span> with us & stay updates</h1>
</div>
<div class="contact-section">
<!-- Contact Information -->
<div class="contact-box">
<h3><i class="fas fa-map-marker-alt"></i> Address</h3>
<p>107, Brooklyn Golden Road Street, New York, United States of America</p>
<h3><i class="fas fa-envelope"></i> Email</h3>
<p>[email protected]</p>
<p>[email protected]</p>
<h3><i class="fas fa-phone"></i> Phone</h3>
<p>+01 123 456 789</p>
<p>+02 345 678 901</p>
</div>
<!-- Contact Form -->
<div class="form-box">
<form>
<input type="text" placeholder="Your full name*" required>
<input type="email" placeholder="Your email address*" required>
<input type="text" placeholder="Subject*" required>
<textarea placeholder="Message*" required></textarea>
<button type="submit">Send message</button>
</form>
</div>
</div>
<div class="info-section">
<div class="info-card" style="background-color: rgb(231, 204, 204)">
<img src="message.png" alt="Chat">
<h4>Chat with live experts</h4>
<a href="#">Chat now</a>
</div>
<div class="info-card" style="background-color: rgb(203, 217, 232)";>
<img src="shake.png" alt="Partner">
<h4>Enhance your helping hand</h4>
<a href="#">Join now</a>
</div>
<div class="info-card" style="background-color: rgb(178, 210, 178)";>
<img src="querty.png" alt="FAQ">
<h4>Ask your question & get updates</h4>
<a href="#">Ask now</a>
</div>
</div>
<div class="map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d224176.69698534257!2d76.76037529453126!3d28.60694920000002!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390d1bebddef3a4b%3A0xf7ea2f4af17a9076!2sAsha%20Foundation%20(NGO)%2C%20Best%20NGO%20in%20Delhi%20NCR%2CTop%20NGO%20in%20Delhi!5e0!3m2!1sen!2sin!4v1734764611463!5m2!1sen!2sin" width="1200" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</div>
<div class="newsletter">
<p>To get weekly & monthly news, <strong>Subscribe</strong> to our newsletter.</p>
<form>
<input type="email" placeholder="Your mail address">
<button type="submit">Subscribe</button>
</form>
</div>
</div>
</body>
</html>