-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContactUs.html
156 lines (129 loc) · 4.16 KB
/
ContactUs.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
<!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>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color:#333;
}
header {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}.navbar {
background-color: #4CAF50;
/* Green background color for the navbar */
padding: 10px 0;
}
.container {
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: 20px auto;
/* Full viewport height */
}
.logo {
color: white;
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
text-decoration: none;
color: white;
font-weight: bold;
}
.containers {
max-width: 800px;
margin: 50px auto;
background-color:white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h2 {
color: #333;
}
p {
margin-bottom: 20px;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 10px;
}
.contact-info {
font-size: 16px;
}
.social-icons {
display: flex;
align-items: center;
}
.social-icon {
margin-right: 15px;
}
.social-icon img {
width: 30px;
height: 30px;
}
</style>
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="logo">Hunger Help</div>
<ul class="nav-links">
<li><a href="WhatToDonate.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="ContactUs.html">Contact Us</a></li>
<li><a href="Feedback.html">Rating&Feedback</a></li>
</ul>
</div>
</nav>
<div class="containers">
<h2>Our Contact Information</h2>
<p>Feel free to reach out to us using the contact details below:</p>
<ul class="contact-info">
<li><strong>Email:</strong> [email protected]</li>
<li><strong>Phone:</strong> +1 (123) 456-7890</li>
<li><strong>Address:</strong> 123 Street, Cityville, Country</li>
</ul>
<p>If you have any questions or concerns, please don't hesitate to get in touch with us. We'll do our best to assist you.</p>
<div class="social-icons">
<div class="social-icon">
<a href="https://twitter.com/example" target="_blank">
<img src="https://e7.pngegg.com/pngimages/708/311/png-clipart-icon-logo-twitter-logo-twitter-logo-blue-social-media-thumbnail.png" alt="Twitter">
</a>
</div>
<div class="social-icon">
<a href="https://instagram.com/example" target="_blank">
<img src="https://static.vecteezy.com/system/resources/previews/017/743/717/non_2x/instagram-icon-logo-free-png.png" alt="Instagram">
</a>
</div>
<div class="social-icon">
<a href="https://facebook.com/example" target="_blank">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/6c/Facebook_Logo_2023.png" alt="Facebook">
</a>
</div>
</div>
</div>
</body>
</html>