-
Notifications
You must be signed in to change notification settings - Fork 11
/
contactpage.html
192 lines (158 loc) · 8.2 KB
/
contactpage.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact us</title>
<!-- FONT AWESOME -->
<script src="https://kit.fontawesome.com/a07f142f8f.js" crossorigin="anonymous"></script>
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@500;900&family=Ubuntu&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="css/contact.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-fixed-top navbar-light border-bottom shadow-sm" >
<div class="container">
<a href="#" class="navbar-brand"><img src="images/logo.png" class="img-responsive" width="52px"> </a>
<a href="#" class="navbar-brand visible-sm"><strong>
<h4>KABCHEFS COMMUNITY</h4>
</strong></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#myNavbar" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item ">
<a class="nav-link " href="index.html"> <span
class="fa fa-home"></span> Home </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="Project.html"><span
class="fa fa-th"> </span> Projects </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="articles.html"><span
class="fa fa-gift"></span> Articles </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="about.html"><span
class="fa fa-calendar"></span> About Us </a>
</li>
<li class="nav-item ">
<a class="nav-link active" href="contactpage.html"><span
class="fa fa-user"></span> Contact Us </a>
</li>
<li class="nav-item ">
<a class="nav-link" href="login.html"><span
class="fa fa-lock"></span> Login </a>
</li>
</ul>
</div>
</div>
</nav>
<!-- contact us -->
<section id="contact-section" class="contactUs">
<div class="contact-header">
<div class="container-lg">
<h1 class="headline-text">We'd love to hear from you
</h1>
<h3 class="common-IntroText">Our team is happy to answer your questions. Fill out the form and we’ll be in touch as soon as possible.</h3>
</div>
</div>
<div class="container-fluid contact-content">
<div class="row">
<div class="col-md-5 contact-info-column shadow-lg p-3 mb-5 rounded">
<div class="contact-info ">
<h1 > GET IN TOUCH WITH US </h1>
<br><br>
<p><i class="fas fa-map-marker-alt"></i> Kurukshetra,Haryana </p>
<p><i class="fas fa-envelope"></i> <a href="mailto:#">[email protected]</a></p>
<p><i class="fas fa-phone-alt"></i> <a href="tel:#">+91 12345678</a><span> or </span><a href="tel:#">+91 87654321</a> </p>
<div class="social">
<a href="https://m.facebook.com/kabchefs-111663893943137"" class="social-icon fab fa-facebook fa-lg"></a>
<a href="https://twitter.com/kabchefs" class="social-icon fab fa-twitter fa-lg"></a>
<a href="https:www.instagram.com/kabchefs" class="social-icon fab fa-instagram fa-lg"></a>
<a href="https://www.linkedin.com/company/kabchefs" class="social-icon fab fa-linkedin fa-lg"></a>
</div>
</div>
</div>
<div class="col-md-7">
<div class="contact-form shadow-lg p-3 mb-5 bg-white rounded">
<form action="" method="" class="contact-form">
<div class="form-group">
<div class="col-sm-10">
<input type="text" class="form-control" id="firstName" placeholder="Your First Name" name="firstName" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
<input type="text" class="form-control" id="lastName" placeholder="Your Last Name" name="lastName">
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
<input type="email" class="form-control" id="email" placeholder="Your working email" name="email" required>
</div>
</div>
<div class="form-group">
<div class="col-sm-10">
<textarea class="form-control" rows="5" id="message" placeholder="Write your message here"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary submit-button">Submit</button>
</div>
</div>
</form>
</div>
</div>
</section>
<!-- footer -->
<div class="footer">
<div class="inner-footer">
<a href="https://www.linkedin.com/company/kabchefs"><img src="images/0.jpeg" alt="college image" height="250px" width="400px"></a>
<div class="footer-items">
<h1>Kabchefs</h1>
<p>
Kabchefs is an open source and non-profitable organization.
We build for the #nation . We build for #india.
</p>
</div>
<div class="footer-items">
<h2> Quick Links</h2>
<div class="border"></div>
<ul>
<a href=""><li>Home</li></a>
<a href=""><li>About</li></a>
<a href=""><li>Project</li></a>
<a href=""><li>Article</li></a>
<a href=""><li>Services</li></a>
<a href=""><li>Contact</li></a>
</ul>
</div>
<div class="footer-items">
<h2> Contact Us</h2>
<!-- <div class="border"></div> -->
<ul>
<li><i class="fa fa-map-marker" aria-hidden="true"></i>1,XYZ Street,New Delhi</li>
<li><i class="fa fa-phone" aria-hidden="true"></i>9802378295</li>
<li><i class="fa fa-envelope" aria-hidden="true"></i>[email protected]</li>
</ul>
<div class="social-media">
<a href=" https://m.facebook.com/Kabchefs-111663893943137/"><i class="fa fa-facebook" aria-hidden="true"></i></a>
<a href=" https://twitter.com/kabchefs"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href=" https://www.instagram.com/kabchefs/"><i class="fa fa-instagram" aria-hidden="true"></i></a>
<a href=" https://www.linkedin.com/company/kabchefs"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
Copyright © Kabchefs 2020.All rights reserved.
</div>
</div>
</body>
</html>