-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
executable file
·28 lines (27 loc) · 1.13 KB
/
menu.html
File metadata and controls
executable file
·28 lines (27 loc) · 1.13 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
<nav class="navbar navbar-inverse ">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Debayan</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li ui-sref-active="active"><a href="#/aboutme" >About me</a></li>
<li ui-sref-active="active"><a href="/honeppage.html" >ThankyouSir</a></li>
<li class="dropdown ">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Projects <span class="caret"></span></a>
<ul class="dropdown-menu">
<!-- <li><a href="#/games">Games</a></li> -->
<li><a href="#/vb">Visual Basic</a></li>
<li><a href="#/others">Other projects</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>