-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_us.php
96 lines (88 loc) · 3.69 KB
/
contact_us.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
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<?php
require 'includes/common.php';
?>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="styling.css">
<meta charset="UTF-8">
<title>E-Store</title>
</head>
<body>
<?php
include 'includes/header.php';
?>
<div class="container">
<div class="row">
<div class="col-lg-8">
<h1>LIVE SUPPORT</h1>
<h4>24 Hours| 7 days a week| 365 days a year Live Technical Support</h4>
<p>
We respect out customer's time
so we are always available live to
help in every way we can. Customer
satisfaction is more important for us.
So, we provide you this, a live system.
Submit your problems and it shall be
resolved by the time you say "Problem".
We strive to have a
positive impact on customers,
employees, small businesses,
the economy, and communities. SO we provide
you with the best of the best.
</p>
</div>
<div class="col-lg-4">
<img src="img/contact.png" alt="User.png" class="img-responsive"
style="max-width: 70%" >
</div>
</div>
<div class="row">
<div class="col-lg-7">
<h1>Contact Us</h1>
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" name="name">
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" name="email">
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea class="form-control" rows="3" name="message"
style="height: 90px"></textarea>
</div>
<button class="btn btn-primary" style="margin-bottom: 5%">Submit</button>
</form>
</div>
<div class="col-lg-5">
<h1>Company Information</h1>
<h5>14, New borne Street,
New Avenue,
Seattle,
USA
</h5>
<p>Phone: (+91) 0001 312332</p>
<p>Fax: 000 000 1111</p>
<p>Email: [email protected]</p>
<p>Follow us on Facebook, Instagram and twitter</p>
</div>
</div>
</div>
<div style="padding-top: 7%; position: relative">
<?php
include 'includes/footer.php';
?>
</div>
</body>
</html>