-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.php
202 lines (167 loc) · 4.24 KB
/
order.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
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
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Order Online</title>
<script src="http://s.codepen.io/assets/libs/modernizr.js" type="text/javascript"></script>
<script type="text/javascript">
function popup(mylink,windowname)
{
if(!window.focus)
return true;
var href;
if(typeof(mylink)=='string')
href=mylink;
else
href=mylink.href;
window.open(href,windowname,'width=400,height=200,scrollbar=yes');
return false;
}
</script>
<script type="text/javascript">
function show_confirm()
{
var r=confirm("Press a button");
if (r==true)
{
alert("You pressed OK!");
}
else
{
alert("You pressed Cancel!");
}
}
</script>
</style>
<link rel="stylesheet" href="css/normalize.css">
<style>
/* NOTE: The styles were added inline because Prefixfree needs access to your styles and they must be inlined if they are on local disk! */
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Federo);
body {
/* general styles */
padding: 30px;
font-family: 'Open Sans', sans-serif;
background: #f1c40f;
color: #fff;
}
.modal {
/* some styles to position the modal at the center of the page */
position: fixed;
top: 50%;
left: 50%;
width: 350px;
line-height: 300px;
height: 200px;
margin-left: -380px;
margin-top: -100px;
background-color: #f1c40f;
text-align: ;
border-radius: 5px;
/* needed styles for the overlay */
z-index: 10; /* keep on top of other elements on the page */
box-shadow: 0 0 0 9999px rgba(0,0,0,0.5);
}
.content {
margin: 30px;
}
h1 {
font-family: 'Federo', sans-serif;
}
</style>
<script src="js/prefixfree.min.js"></script>
</head>
<body>
<div class="modal"><!iframe src="login.html" scrollbar="yes" width="400px" height="300px"><!/iframe>
<center>
<a href="orderlogin.php" ><img src="bg/login.jpg" align="left"></img></center></a>
</div>
<div class="content">
<center><h1>CEG's Restaurent</h1></center>
<ul class="horizontalul">
<li><a class="active" href="home.php">Home</a></li>
<li><a href="Menu.php">Menu</a>
<ul>
<li ><a href="Menu.php">Specialities</li>
<li ><a href="Menu.php">Snacks</li>
<li ><a href="Menu.php">Soups</li>
<li ><a href="Menu.php">Starters</li>
<li ><a href="Menu.php">Main Course</li>
<li ><a href="Menu.php">Desserts</li>
<li ><a href="Menu.php">Drinks</li>
</ul>
<li><a href="gallery.php">Gallery</a></li>
<li><a href="order.php">Order Online</a></li>
<li><a href="contact.php">Contact</a></li>
<li><a href="about.php">About us</a></li>
</ul>
</div>
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
</body>
</html>
<style>
ul
{
height:7%;
list-style-type:none;
margin: 0;
padding :0;
overflow:hidden;
background;
position:none;
top:100%;
width:100%
}
li
{
float:left;
}
li:last-child
{
float:left;
border-right:none;
}
li a{
display:block;
color:white;
text-align:center;
padding:14px 16px;
text-decoration:;
}
li a:hover
{
a:active
{
background-color:#111
};
background-color:663366;
}
p.one
{
border-style:solid;
border-width:5px;
}
frameset.two
{
border-style:solid;
border-width:medium;
}
a {
color:white;
text-decoration:none }
p.three
{
border-style:solid;
border-width:1px;
}
li ul { margin:0; padding:0 5px; line-height:none;height:42%;
position:absolute; top:29px; left:0; border:solid 1px #c93300; border-width:0px 1px 1px 1px; width:180px; display:none; background:#FFFFFF;}
li:hover ul { display:block }
li:hover a {color:white; background::#4CAF50;
}
li ul li { display:block; border-bottom:solid 3px #888888 ; width:100%; background:url(images/d_horizontal_red_classic_menu_arrow.gif) no-repeat 3px 12px; padding:10px 2px 10px; }
li ul li:last-child { border-bottom:0px;}
li ul a { border-width:10px; color:#909090; padding:0 5px 0 0; background-color:transparent;}
li:hover ul li a { color:#909090}
li ul li a:hover {color:white; background::#4CAF50;
</style>