-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact.php
225 lines (198 loc) · 7.52 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta viewport="width=device-width, initial-scale=1.0" />
<!-- Favicon -->
<link
rel="apple-touch-icon"
sizes="180x180"
href="./assets/images/favicons/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./assets/images/favicons/favicon-16x16.png"
/>
<link rel="manifest" href="./assets/images/favicons/site.webmanifest" />
<!-- Bootstrap CSS - CDN -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<!-- Link To CSS Style Sheet -->
<link rel="stylesheet" href="./styles/contact.css" />
<link rel="stylesheet" href="./styles/main.css" />
<!-- Font Awesome Icons Link -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Section</title>
</head>
<body>
<div class="main-wrapper">
<?php include_once "./components/navbar.php"; ?>
<div class="container">
<main class="row mt-lg-5 mt-md-3">
<!-- Left Section (Column) Starts -->
<section class="col left">
<div class="gif-container">
<img
src="./assets/images/contact/contact.gif"
alt="Contact GIF"
class="responsive-gif"
/>
</div>
<!-- ******* Social Media Ends ******* -->
</section>
<!-- ******* Left Section (Column) Ends ******* -->
<!-- ******* Right Section (Column) Starts ******* -->
<section class="col right">
<!-- ******* Form Starts ******* -->
<form class="messageForm border rounded shadow-sm p-3">
<h2 class="section-title mb-4">Send Us A <span>Message</span></h2>
<div class="form-floating mb-3 halfWidth">
<input
type="text"
class="form-control"
id="floatingInput1"
placeholder="[email protected]"
/>
<label for="floatingInput">Full Name</label>
</div>
<div class="form-floating mb-3 halfWidth">
<input
type="email"
class="form-control"
id="floatingInput2"
placeholder="[email protected]"
/>
<label for="floatingInput">Email</label>
</div>
<div class="form-floating mb-3 fullWidth">
<input
type="text"
class="form-control"
id="floatingInput3"
placeholder="[email protected]"
/>
<label for="floatingInput">Subject</label>
</div>
<div class="form-floating fullWidth">
<textarea
class="form-control message-input-area"
rows="20"
placeholder="Leave a comment here"
id="floatingTextarea1"
></textarea>
<label for="floatingTextarea2">Message</label>
</div>
<div>
<br />
<button type="submit" class="btn-primary d-inline-flex align-items-center gap-2"><i class="fa-regular fa-paper-plane"></i>Send Message</button>
</div>
</form>
<!-- ******* Form Ends ******* -->
</section>
<!-- ******* Right Section (Column) Ends ******* -->
</main>
</div>
<div class="container">
<main class="row">
<!-- ******* Left Section (Column) Starts ******* -->
<!-- ******* Title Starts ******* -->
<section class="col left">
<div>
<h2 class="section-title">Contact Us</h2>
<p>
<br />If Connect with us and let's bring your vision to life!
We're eager to hear your ideas, answer your questions, and work
together on your next big project. Reach out now and let's make
amazing things happen. Please contact us at,
</p>
</div>
<!-- Title Ends -->
<!-- Contact Info Starts -->
<div class="contactInfo">
<div class="iconGroup">
<div class="icon">
<i class="fa-solid fa-phone"></i>
</div>
<div class="details">
<span>Phone</span>
<span>+94 761234567</span>
</div>
</div>
<div class="iconGroup">
<div class="icon">
<i class="fa-solid fa-envelope"></i>
</div>
<div class="details">
<span>Email</span>
<span>[email protected]</span>
</div>
</div>
<div class="iconGroup">
<div class="icon">
<i class="fa-solid fa-location-dot"></i>
</div>
<div class="details">
<span>Location</span>
<span>Pitipana, Homagama, Colombo, Sri Lanka</span>
</div>
</div>
</div>
<!-- Contact Info Ends -->
<!-- Social Media Starts -->
<div class="socialMedia">
<a href="#" aria-label="Facebook"
><i class="fa-brands fa-facebook-f"></i
></a>
<a href="#" aria-label="Twitter"
><i class="fa-brands fa-twitter"></i
></a>
<a href="#" aria-label="Instagram"
><i class="fa-brands fa-instagram"></i
></a>
<a href="#" aria-label="LinkedIn"
><i class="fa-brands fa-linkedin-in"></i
></a>
</div>
<!-- Social Media Ends -->
</section>
</main>
</div>
<!-- Footer Start -->
<?php include_once('./components/footer.php'); ?>
<!-- Footer End -->
</div>
<!-- Popper - CDN -->
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"
></script>
<!-- Fontawesome - CDN -->
<script
src="https://kit.fontawesome.com/0a73ff5289.js"
crossorigin="anonymous"
></script>
<!-- Bootstrap JS - CDN -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-fbbOQedDUMZZ5KreZpsbe1LCZPVmfTnH7ois6mU1QK+m14rQ1l2bGBq41eYeM/fS"
crossorigin="anonymous"
></script>
</body>
</html>