forked from 07sumit1002/CabRental
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
103 lines (87 loc) · 3.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="CodeHim">
<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>
</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>
</html>