-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav2.php
More file actions
20 lines (19 loc) · 1.31 KB
/
nav2.php
File metadata and controls
20 lines (19 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<nav class="navbar navbar-expand-sm navbar-dark pl-5" style = "background-color : #DC143C">
<a href="#" class="navbar-brand" style="font-family:forte;font-size:35">
Wrapify
</a>
<button type = "button" class="navbar-toggler" data-toggle="collapse" data-target="#abc">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id = abc>
<ul class="navbar-nav text-center ml-auto">
<li class="nav-item"><a class= "nav-link" href=userhome.php style = "color : white ; font-weight : bold"><i class="fal fa-home-lg-alt"></i> Home</a></li>
<li class="nav-item"><a class= "nav-link" href=viewmybooking.php style = "color : white ; font-weight : bold">View Booking</a></li>
<li class="nav-item"><a class= "nav-link" href=feedback.php style = "color : white ; font-weight : bold">Send FeedBack</a></li>
<li class="nav-item"><a class= "nav-link" href=changepassword.php style = "color : white ; font-weight : bold">Change Password</a></li>
<li class="nav-item"><a class= "nav-link" href=profile.php style = "color : white ; font-weight : bold">Profile</a></li>
<li class="nav-item"><a class= "nav-link" href=logout.php style = "color : white ; font-weight : bold">Logout</a></li>
<li class="nav-item"><a class= "nav-link" href=addtocart.php style = "color : white ; font-weight : bold">Cart</a></li>
</ul>
</div>
</nav>