-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav1.php
More file actions
19 lines (19 loc) · 1.1 KB
/
nav1.php
File metadata and controls
19 lines (19 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<nav class="navbar navbar-expand-sm navbar-dark pl-5" style = "background-color : #DC143C">
<div class="container">
<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=index.php style = "color : white ; font-weight : bold"><i class="fas fa-home"></i> Home</a></li>
<li class="nav-item"><a class= "nav-link" href=login.php style = "color : white ; font-weight : bold">Login</a></li>
<li class="nav-item"><a class= "nav-link" href=about.php style = "color : white ; font-weight : bold">About</a></li>
<li class="nav-item"><a class= "nav-link" href=contact.php style = "color : white ; font-weight : bold"><i class="fas fa-address-book"></i> Contact</a></li>
<li class="nav-item"><a class= "nav-link" href=feedbackpg.php style = "color : white ; font-weight : bold">View Feedback</a></li>
</ul>
</div>
</div>
</nav>