-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
37 lines (30 loc) · 1.31 KB
/
Copy pathheader.php
File metadata and controls
37 lines (30 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@6.2.1/css/fontawesome.min.css" integrity="sha384-QYIZto+st3yW+o8+5OHfT6S482Zsvz2WfOzpFSXMF9zqeLcFV0/wlZpMtyFcZALm" crossorigin="anonymous">
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="navbar">
<div class="logo">
<img src="Images/logo.png" height="30px" width="100px">
</div>
<div class="nav">
<ul>
<li><a href="/E%20commerce%20Site/index.php">Home</a> </li>
<li><a href="all-products.php">Products</a> </li>
<li><a href="about.php">About</a> </li>
<li><a href="/E%20commerce%20Site/contact.php">Contact</a> </li>
<li><a href="/E%20commerce%20Site/account.php">Account</a> </li>
<li><a href="logout.php">Logout</a></li>
</ul>
</div>
</div>
</body>
</html>