-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.php
182 lines (176 loc) · 6.09 KB
/
contact.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://unicons.iconscout.com/release/v4.0.0/css/line.css"
/>
<link rel="shortcut icon" type="image/png" href="images/logo.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/contact.css" />
<title>Contact us || CodingHour | Let's Crack the Code</title>
</head>
<body>
<nav>
<div class="container nav_container">
<a class="home_button" href="index.php"><h3>CodingHour</h3></a>
<ul class="nav_menu">
<li><a href="#">Login</a></li>
<li><a href="courses.php">Courses</a></li>
<li><a href="paymentStatus.php">Payment Status</a></li>
<li><a href="#">Register</a></li>
</ul>
<button id="open-menu-btn"><i class="uil uil-bars"></i></button>
<button id="close-menu-btn"><i class="uil uil-multiply"></i></button>
</div>
</nav>
<!--============================================= End of NavBar============================== -->
<!-- ============================================Contact Form================================ -->
<section class="contact">
<div class="container contact_container">
<aside class="contact_aside">
<div class="aside_image">
<img src="images/contactus.svg" />
</div>
<h2>Contact Us</h2>
<p>
We are dedicated to supporting your learning journey and ensuring a seamless e-learning experience. Our team of experts is here to assist you every step of the way. Whether you need assistance with course selection, technical support, or general inquiries, we are just a click away.
</p>
<ul class="contact_details">
<li>
<i class="uil uil-phone-times"></i>
<h5>+91 123 456 7890</h5>
</li>
<li>
<i class="uil uil-envelope-alt"></i>
<h5>[email protected]</h5>
</li>
<li>
<i class="uil uil-location-point"></i>
<h5>Remote Location</h5>
</li>
</ul>
<ul class="contact_socials">
<li>
<a href="https://facebook.com"
><i class="uil uil-facebook-f"></i
></a>
</li>
<li>
<a href="https://instagram.com"
><i class="uil uil-instagram"></i
></a>
</li>
<li>
<a href="https://twitter.com"><i class="uil uil-twitter"></i></a>
</li>
<li>
<a href="https://linkedin.com"
><i class="uil uil-linkedin-alt"></i
></a>
</li>
</ul>
</aside>
<form
action="https://formspree.io/f/xeqwkekw"
method="POST" class="contact_form"
>
<div class="form_name">
<input
type="text"
name="First Name"
placeholder="First Name"
required
/>
<input
type="text"
name="Last Name"
placeholder="Last Name"
required
/>
</div>
<input
type="email"
name="Email Address"
placeholder="Your Email Address"
required
/>
<textarea
name="Message"
rows="7"
placeholder="Message"
required
></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</section>
<!-- ====================================Contact Form=========================== -->
<!--==================================== Footer================================= -->
<footer>
<div class="container footer_container">
<div class="footer_1">
<a class="home_button" href="index.html"><h3>CodingHour</h3></a>
<p>
"Welcome to CodingHour, your one-stop destination for all things
coding and technology."
</p>
</div>
<div class="footer_2">
<h4>Permalinks</h4>
<ul class="permalinks">
<li><a href="index.php">Home</a></li>
<li><a href="about.php">About</a></li>
<li><a href="courses.php">Courses</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<div class="footer_3">
<h4>Primacy</h4>
<ul class="privacy">
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms and Conditions</a></li>
<li><a href="#">Refund Policy</a></li>
</ul>
</div>
<div class="footer_4">
<h4>Contact Us</h4>
<div>
<p>+91 123 456 7890</p>
<p>Remote location</p>
</div>
<ul class="footer_socials">
<li>
<a href="#"><i class="uil uil-facebook-f"></i></a>
</li>
<li>
<a href="#"><i class="uil uil-instagram-alt"></i></a>
</li>
<li>
<a href="#"><i class="uil uil-twitter"></i></a>
</li>
<li>
<a href="#"><i class="uil uil-linkedin-alt"></i></a>
</li>
</ul>
</div>
</div>
<div class="footer_copyright">
<small
>Copyright © CodingHour || <a href="#">Admin_Login</a></small
>
</div>
</footer>
<!-- ==============================End of Footer====================================== -->
<script src="js/main.js"></script>
</body>
</html>