forked from 07sumit1002/CabRental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactus.html
217 lines (188 loc) · 6.36 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/logo1.png" type="image/png">
<meta name="author" content="CodeHim">
<link rel="icon" href="img/logo1.png" type="image/png">
<title>Contact Us Page</title>
<link rel="stylesheet" href="contactus.css">
<link rel="stylesheet" href="./css/demo.css">
<script src="https://kit.fontawesome.com/c32adfdcda.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<button class="back-button" onclick="window.location.href='index.html'"><img src="img/back_button.png" width="60px" height="60px"/></button>
<header class="cd__intro">
<div class="cd__action">
<a href="https://www.codehim.com/html5-css3/contact-us-page-design-in-html-cod" class="cd__btn back"></a>
</div>
</header>
<main class="cd__main">
<section>
<div class="section-header">
<div class="container">
<h2>Contact Us</h2>
<p>
At Car Rental Service we are here to assist you with all your car rental needs. Whether you have questions about our services, need help with a reservation, or want to provide feedback, our team is ready to help. Reach out to us via phone, email, or by filling out the contact form below. We look forward to hearing from you and ensuring your car rental experience is smooth and enjoyable.
Feel free to customize it further to better fit your specific needs!
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="contact-info">
<div class="contact-info-item">
<div class="contact-info-icon">
<i class="fas fa-home"></i>
</div>
<div class="contact-info-content">
<h4>Address</h4>
<p> <br/></p>
</div>
</div>
<div class="contact-info-item">
<div class="contact-info-icon">
<i class="fas fa-phone"></i>
</div>
<div class="contact-info-content">
<h4>Phone</h4>
<p></p>
</div>
</div>
<div class="contact-info-item">
<div class="contact-info-icon">
<i class="fas fa-envelope"></i>
</div>
<div class="contact-info-content">
<h4>Email</h4>
<p></p>
</div>
</div>
</div>
<div class="contact-form">
<form action="" id="contact-form">
<h2>Send Message</h2>
<div class="input-box">
<input type="text" required="true" name="">
<span>Full Name</span>
</div>
<div class="input-box">
<input type="email" required="true" name="">
<span>Email</span>
</div>
<div class="input-box">
<textarea required="true" name=""></textarea>
<span>Type your Message...</span>
</div>
<div class="input-box">
<input type="submit" value="Send" name="">
</div>
</form>
</div>
</div>
</div>
</section>
</main>
<script src="./js/contactus.js"></script>
</body>
<footer>
<div class="footer-main">
<div class="footer-container">
<div class="footer-links">
<div class="footer-column">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Privacy</a></li>
<li><a href="#">Services</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Help Center</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Cookies Preferences</a></li>
<li><a href="#">Legal Notices</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Account</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Corporate Information</a></li>
<li><a href="#">Pricing</a></li>
</ul>
</div>
<div class="footer-column">
<ul>
<li><a href="#">Media Center</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024 CabRental. All rights reserved. | Designed and Developed by Sumit Kumar</p>
</div>
<style>
/* Footer main styling */
footer {
background-color: #f0f0f0; /* Light grey background like in the image */
color: #333; /* Darker text */
padding: 20px 0;
text-align: center;
}
.footer-main {
background-color: #fff; /* Different background for the main content area */
padding: 20px 0;
}
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-links {
display: flex;
justify-content: space-between;
width: 100%;
margin-bottom: 20px;
}
.footer-column {
flex: 1;
text-align: left;
padding: 0 15px;
}
.footer-column ul {
list-style-type: none;
padding: 0;
}
.footer-column li {
margin-bottom: 8px;
}
.footer-column a {
color: #333;
text-decoration: none;
font-size: 14px;
}
.footer-column a:hover {
text-decoration: underline;
}
/* Footer bottom section */
.footer-bottom {
background-color: #ee6d6d; /* Footer bottom color similar to the image */
color: white;
padding: 10px 0;
}
.footer-bottom p {
margin: 0;
font-size: 14px;
}
</style>
</footer>
</html>