-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin_menu.html
59 lines (53 loc) · 1.42 KB
/
admin_menu.html
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
<html>
<head>
<title>Customer</title>
<link rel="stylesheet" type="text/css" href="navbar.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<style>
body {
background-color: rgb(252, 180, 228);
}
body * {
box-sizing: border-box;
}
</style>
<body>
<nav class="menu-container">
<input type="checkbox" aria-label="Toggle menu" />
<span></span>
<span></span>
<span></span>
<a href="admin.html" class="menu-logo">
<img src="images/image-removebg-preview.png" alt="My Awesome Website"/>
</a>
<div class="menu">
<ul>
<li>
<a href="admin.html">
Home
</a>
</li>
<li>
<a href="admin_menu.html">
Menu
</a>
</li>
<li>
<a href="admin_orders.html">
Orders
</a>
</li>
</ul>
<ul>
<li>
<a href="index.html">
Sign Out
</a>
</li>
</ul>
</div>
</nav>
Admin Menu
</body>
</html>