-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathhelp.php
137 lines (137 loc) · 4.57 KB
/
help.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
130
131
132
133
134
135
136
137
<HTML>
<HEAD>
<TITLE>Help & FAQ</TITLE>
<style type="text/css">
*{font-family: 'Roboto', sans-serif;}
a:link {color: #ffffff}
a:visited {color: #ffffff}
a:hover {color: #ffffff}
a:active {color: #ffffff}
#grad {
background: linear-gradient(to right, aqua , white);
}
#panel, #flip {
padding: 2px;
text-align: left;
}
#panel1,#panel2,#panel3,#panel4,#panel5,#panel6,#voucher{
display:none;
}
.ptr {
text-decoration: none;
cursor: pointer;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#flip1").click(function(){
$("#panel1").slideToggle("slow");
});
});
</script>
<script>
$(document).ready(function(){
$("#flip2").click(function(){
$("#panel2").slideToggle("slow");
});
});
</script>
<script>
$(document).ready(function(){
$("#flip3").click(function(){
$("#panel3").slideToggle("slow");
});
});
</script>
<script>
$(document).ready(function(){
$("#flip4").click(function(){
$("#panel4").slideToggle("slow");
});
});
</script>
<script>
$(document).ready(function(){
$("#flip5").click(function(){
$("#panel5").slideToggle("slow");
});
});
</script>
<script>
$(document).ready(function(){
$("#flip6").click(function(){
$("#panel6").slideToggle("slow");
});
});
$(document).mouseup(function (e)
{
var container = $(".panel");
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
container.hide("slow");
}
});
$(document).ready(function(){
$("#banner").mouseenter(function(){
$("#voucher").show();
$("#voucher").animate({left: '500px'});
});
});
</script>
<script>
$(document).ready(function(){
$("#banner").dblclick(function(){
alert("Error!!! You have double clicked. Please retry.");
});
});
$(document).ready(function(){
$("#voucher").mousedown(function(){
var $temp = $("<input>");
$("body").append($temp);
$temp.val($("#voucher").text()).select();
document.execCommand("copy");
$temp.remove();
});
});
</script>
</HEAD>
<BODY background="u2.jpg">
<?php include("header.php"); ?>
<TABLE width="1200" height="440" style="border-width:4px; border-style:dashed;border-color:#0000CC;border-radius: 25px;" align="center" id="grad">
<CAPTION><FONT color="white" size="5">Help & FAQ</FONT></CAPTION>
<TR><TD>
<FONT size="4" face="Tahoma">
<UL>
<LI><SECTION id="flip1" class="ptr">Where do you deliver?</SECTION>
<div id="panel1" class="panel">
We deliver across the following regions:<BR>
1)Kandivali West<BR>
2)Kandivali East<BR>
3)Borivali West<BR>
4)Borivali East<BR></div>
</LI><HR>
<LI><SECTION id="flip2" class="ptr">When do you deliver?</SECTION>
<div id="panel2" class="panel">
We deliver Wednesday, Thursday and Friday for all customers, as well as Saturdays, Mondays, Tuesdays and Sundays in specific areas.<BR>
You can order during any time of the day. The delivery will be done between 30-60 mins after placement of order.
</div></LI><HR>
<LI><SECTION id="flip3" class="ptr">What if I am not at home to accept the delivery?</SECTION>
<div id="panel3" class="panel">Not to worry! If you are not home during delivery, our courier will drop the box off at your front door (or wherever you specify in your Delivery Instructions).
If you live in an area where a box could not easily be left, we suggest one of the following solutions:<BR>
✔Provide the address of a helpful neighbor that will be home during the delivery window and can accept your package for you.<BR>
✔Have the box delivered to your work place.</div></LI><HR>
<LI><SECTION id="flip4" class="ptr">How does the food stay fresh in transit?</SECTION>
<div id="panel4" class="panel">We have specially designed boxes that we pack with a nice, thick liner and ice packs to ensure that everything arrives to you perfectly cold!</DIV></LI><HR>
<LI><SECTION id="flip5" class="ptr">How much does delivery cost?</SECTION>
<div id="panel5" class="panel">It’s free, silly! You subscribe and delivery is on us!</DIV></LI><HR>
<LI><SECTION id="flip6" class="ptr">How many calories do your meals have?</SECTION>
<div id="panel6" class="panel">Roughly speaking our meals contain anywhere from 500-800 calories each.</DIV></LI>
</UL></FONT>
</TR></TD>
</TABLE>
<DIV id="voucher" style="color:white;position:absolute;font-size: 25">Your Voucher ID is :6457HT5467 (Click to copy)</DIV><BR>
<IMG SRC="discount.jpg" width="300" height="150" border="2" id="banner" align="right"></IMG>
</BODY>
</HTML>