-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnav-bar2.php
30 lines (25 loc) · 877 Bytes
/
nav-bar2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>nav-bar</title>
<link href="css/nav-bar1.css" type="text/css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Flamenco&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<div class="logo">
<img src="../project/image/kasturi%20logo%202.png">
</div>
<div class="menu">
<li><a href="home.php">Home</a></li>
<li><a href="About.php">About Kanoria</a></li>
<li><a href="event.php">Events</a></li>
<li><a href="contactus.php">Contact Us</a></li>
<li><a href="profile1.php">view profile</a></li>
<li><a href="logout.php">Logout</a></li>
<li><a href="gallary.php">Gallary</a></li>
</div>
</nav>
</body>
</html>