-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact.html
139 lines (138 loc) · 5.13 KB
/
contact.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
<!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" />
<title>Beezzly | services</title>
<link rel="stylesheet" href="./app.css" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css"
/>
<script src="./components/Navbar.js" defer></script>
</head>
<body>
<div class="app">
<!-- Navbar -->
<nav id="navbar" class="navbar navbar-expand-md navbar-light"></nav>
<!-- Header -->
<div class="container-fluid py-5 light-bg overflow-hidden">
<div class="container">
<div class="row">
<div class="col-11">
<div class="row">
<div class="col-12 col-md-6">
<h1 class="cl-blue-900">
Have a question ? Let’s get in touch with us.
</h1>
<p>
Fill up the Form and ou team will get back to within 24 hrs
</p>
</div>
<div class="col-6 col-md-3 py-4">
<div class="h5">Location</div>
<ul class="list-unstyled">
<li>DLF Cybercity, Bhubaneswar, India, &52050</li>
</ul>
</div>
<div class="col-6 col-md-3 py-4">
<div class="h5">Contact Us</div>
<ul class="list-unstyled">
<li>020 7993 2905</li>
<li>hi@finsweet.com</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact section -->
<div class="container-fluid">
<div class="container">
<div class="row g-5">
<div class="col-12 col-md-6">
<form class="row g-3" action="">
<div class="form-floating col-12">
<input
class="form-control border-0 bg-blue-200 rounded-pill px-3"
type="text"
placeholder="First Name"
/>
<label class="ms-3" for="floatingInput">First Name</label>
</div>
<div class="form-floating col-12">
<input
class="form-control border-0 bg-blue-200 rounded-pill px-3"
type="text"
placeholder="Last Name"
/>
<label class="ms-3" for="floatingInput">Last Name</label>
</div>
<div class="form-floating col-12">
<input
class="form-control border-0 bg-blue-200 rounded-pill px-3"
type="email"
placeholder="Email Id"
/>
<label class="ms-3" for="floatingInput">Email Id</label>
</div>
<div class="form-floating col-12">
<input
class="form-control border-0 bg-blue-200 rounded-pill px-3"
type="number"
placeholder="Mobile Number"
/>
<label class="ms-3" for="floatingInput">Mobile Number</label>
</div>
<div class="form-floating col-12">
<textarea
class="form-control border-0 bg-blue-200 b-6 px-3"
placeholder="Leave a comment here"
id="floatingTextarea2"
style="height: 140px; resize: none"
></textarea>
<label class="ms-3" for="floatingInput">Type message</label>
</div>
<div class="col-12 pt-3">
<button
id="applyFormSubmitBtn"
type="submit"
class="btn btn-warning rounded-pill bg-brand-primay px-5 py-2"
>
Submit
</button>
</div>
</form>
</div>
<div class="col-12 col-md-6 overflow-hidden b-6">
<img class="" src="./images/map.png" alt="" />
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer
id="footer"
class="container-fluid bg-blueDark py-5 dark-bg mt-5"
></footer>
</div>
<!-- Bootstrap CDN link -->
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<!-- App.js file -->
<script src="./app.js"></script>
<!-- Component : Footer -->
<script src="./components/Footer.js"></script>
</body>
</html>