-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
orders.html
32 lines (31 loc) · 998 Bytes
/
orders.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<nav class="container">
<a href="#" class="logo"><img src="/books webstie/image/logo.png" alt="" width="150px"></a>
<div class="links">
<ul>
<li>
<a href="" class="nav-link">Home</a>
</li>
<li>
<a href="" class="nav-link">Add Products</a>
</li>
<li>
<a href="" class="nav-link">Orders</a>
</li>
</ul>
<a href="#">Logout</a>
</div>
</nav>
</header>
</body>
</html>