Online: 2847
Bootstrap creates standard navigation bar using navbar-default in the nav element
<h2>Navbar default</h2>
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="navbar-brand" href="#">TechFunda</a>
</div>
<div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">DotNetFunda</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
ITFunda
<b class="caret"></b>
</a>
<ul class="dropdown-menu">
<li><a href="#">Online training</a></li>
<li><a href="#">Offline training</a></li>
<li><a href="#">Corporate training</a></li>
</ul>
</li>
</ul>
</div>
</nav>
navbar-default in the nav element which shows the default color to given valuesnavbar-header in div, we have value of class attribute navbar-brand in the anchor tag <a> which is used to increase the font-size of the value TechFunda navbar-nav in the ul element, we created list value as DotNetFunda with class attribute active in the li element dropdown in the li element, we have anchor tag in the li element with value ITFunda and class attribute value as dropdown-toggle in the <a> tag and data-toggle as dropdown, class attribute caret in the b element is used to keep the symbol after the value dropdown-menu in the ul element with list values in the li element as online training, offline training and corporate training in the li element output
Views: 6910 | Post Order: 34