forked from m301/wingtechcs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
129 lines (120 loc) · 4.79 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
<html>
<head>
<title>Contact Us : Wingtech</title>
<?php include "head.inc"; ?>
<!-- Custom CSS -->
<link href="assets/css/homepage.css" rel="stylesheet">
<link href="assets/css/contact.css" rel="stylesheet">
</head>
<body>
<?php include "nav.inc"; ?>
<p>
<hr>
<!--TEAM PAGE-->
<div class="container">
<div class="jumbotron"
style="color:white; background-image:url('assets/images/phone.jpg');background-size:cover; background-repeat:no-repeat; background-position:center center;">
<div class="container">
<h1>Let's make something awesome together</h1>
<h2>Drop us a line,or give us a heads up if you're interesting in visiting us.</h2>
</div>
</div>
<div class="page-header">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-12">
</div>
<div class="col-md-4 col-sm-12">
<center><h2>Get In Touch!</h2>
Let's talk about ur project
</center>
</div>
<div class="col-md-4 col-sm-12">
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<form class="form-horizontal" role="form">
<div class="form-group">
<input type="text" class="form-control" id="firstname"
placeholder="First Name"></div>
</form>
</div>
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-6">
<form class="form-horizontal" role="form">
<div class="form-group">
<input type="text" class="form-control" id="lastname"
placeholder="Last Name"></div>
</form>
</div>
</div>
<div class="row">
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-6">
<form class="form-horizontal" role="form">
<div class="form-group">
<input type="text" class="form-control" id="email"
placeholder="Email"></div>
</form>
</div>
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-6">
<form class="form-horizontal" role="form">
<div class="form-group">
<input type="text" class="form-control" id="phone"
placeholder="Phone"></div>
</form>
</div>
</div>
<div class="row">
<form role="form">
<div class="form-group">
<textarea class="form-control" placeholder="Message" id="msg" rows="3">
</textarea>
</div>
<div class="form-group">
<button type="submit" id="form" class="btn btn-success">SUBMIT</button>
</div>
</form>
</div>
</div>
<div class="page-header">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-12 ">
<div class="thumbnail infoboxes">
<h5><strong>Head Office</strong></h5>
<i class="fa fa-bank" aria-hidden="true"></i>
BBDU<br>BBD Green city<br>
Lucknow.
</div>
</div>
<div class="col-lg-5 col-md-5 col-sm-12 ">
<div class="thumbnail infoboxes"><h5><strong>Contact info</strong></h5>
<span class="glyphicon glyphicon-envelope"</span>
wingtech@bbdu.com<br><br/>
<i class="fa fa-volume-control-phone" aria-hidden="true"></i>
0000-11111<br><i class="fa fa-volume-control-phone" aria-hidden="true"></i>
0000-99999
</div>
</div>
<div class="col-lg-3 col-md-3 col-sm-12 text-center">
<h5><strong>Follow Us</strong></h5>
<ul class="list-inline center-block">
<li><i class="fa fa-facebook fa-2x"></i></li>
<li><i class="fa fa-twitter fa-2x"></i></li>
<li><i class="fa fa-linkedin fa-2x"></i></li>
<li><i class="fa fa-facebook fa-2x"></i></li>
<li><i class="fa fa-twitter fa-2x"></i></li>
<li><i class="fa fa-linkedin fa-2x"></i></li>
</ul>
</div>
</div>
</div>
</div>
<br/>
<?php include "footer.inc"; ?>
</div>
</body>
</html>