-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader6.php
118 lines (98 loc) · 1.86 KB
/
header6.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
<html>
<head>
</head>
<style>
*{
margin:0;
padding:0;
list-style:none;
text-decoration: none;
}
.inner_header{
width:90%;
height:100%;
display:block;
margin:0 auto;
}
.logo_container{
height:auto;
}
.logo_container img{
height:90px;
position: absolute;
left: 48%;
}
.nav{
float:right;
height:100%;
font-size: 25px;
margin-top: 30px;
margin-right: -50px;
}
.nav a{
height:90px;
display:table;
float:left;
padding:25px 20px;
}
.nav a li{
display: table-cell;
vertical-align: middle;
height: 100%;
color: black;
font-family: sans-serif;
}
.nav a:last-child{
padding-right: 0;
}
.nav a li:hover{
color:orange;
font-weight:bold;
}
.nav1{
float:left;
height:100%;
font-size: 25px;
margin-top: 30px;
}
.nav1 a{
height:90px;
display:table;
float:left;
padding:25px 20px;
}
.nav1 a li{
display: table-cell;
vertical-align: middle;
height: 100%;
color: black;
font-family: sans-serif;
}
.nav1 a:last-child{
padding-right: 0;
}
.nav1 a li:hover{
color:orange;
font-weight:bold;
}
</style>
<body>
<div class="header">
<div class="inner_header">
<div class="logo_container">
</div>
<ul class="nav">
<a href="staffsales.php"><li>MT Sales</li></a>
<a href="staffcakesales.php"><li>Cake Sales</li></a>
<a href="updateprice.php"><li> Update Menu</li></a>
<a href="stafflogout.php"><li>Logout</li></a>
</ul>
<ul class="nav1">
<a href="staffprofile.php"><li>Profile</li></a>
<a href="chatbot.php"><li>Chatbot</li></a>
<a href="staff_view.php"><li>Order</li></a>
</ul>
</div>
</div>
</body>
</html>