forked from MuktaGhosh/Automated-Food-Ordering-System
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.php
More file actions
56 lines (52 loc) · 1.64 KB
/
contact.php
File metadata and controls
56 lines (52 loc) · 1.64 KB
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
<?php include 'inc/header.php';?>
<div class="main">
<div class="content">
<div class="support">
<div class="support_desc">
<h3>Opening Time</h3>
<p>8am-10pm| 7 days a week</p>
<p> We prepares and serves food and drinks to customers in exchange for money.Customer can select varieties food items and order by either offline or online payment.
</p>
</div>
<img src="web/images/contact.png" alt="" />
<div class="clear"></div>
</div>
<div class="section group">
<div class="col span_2_of_3">
<div class="contact-form">
<h2>Contact Us</h2>
<form>
<div>
<span><label>NAME</label></span>
<span><input type="text" value=""></span>
</div>
<div>
<span><label>MOBILE.NO</label></span>
<span><input type="text" value=""></span>
</div>
<div>
<span><label>SUBJECT</label></span>
<span><input type="text" value=""></span>
</div>
<div>
<span><input type="submit" value="SUBMIT"></span>
</div>
</form>
</div>
</div>
<div class="col span_1_of_3">
<div class="company_address">
<h2>Company Information</h2>
<p>2 no road ,Muradpur</p>
<p>Chittagong</p>
<p>Bnagladesh</p>
<p>Phone:(00) 222 666 444</p>
<p>Email: <span>[email protected]</span></p>
<p>Follow on: <span>Facebook</span>, <span>Twitter</span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include 'inc/footer.php';?>