2015-11-20 00:58:21 +03:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2015-11-26 01:01:18 +03:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2015-11-20 00:58:21 +03:00
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
< meta name = "description" content = "" >
< meta name = "author" content = "" >
< link rel = "icon" href = "../../favicon.ico" >
< title > Navbar Template for Bootstrap< / title >
<!-- Bootstrap core CSS -->
< link href = "../../dist/css/bootstrap.min.css" rel = "stylesheet" >
<!-- Custom styles for this template -->
< link href = "navbar.css" rel = "stylesheet" >
< / head >
< body >
< div class = "container" >
2015-11-26 01:01:18 +03:00
< nav class = "navbar navbar-light bg-faded" >
< button class = "navbar-toggler hidden-sm-up" type = "button" data-toggle = "collapse" data-target = "#navbar-header" aria-controls = "navbar-header" >
☰
< / button >
< div class = "collapse navbar-toggleable-xs" id = "navbar-header" >
< a class = "navbar-brand" href = "#" > Navbar< / a >
< ul class = "nav navbar-nav" >
< li class = "nav-item active" >
< a class = "nav-link" href = "#" > Home < span class = "sr-only" > (current)< / span > < / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Features< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Pricing< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > About< / a >
< / li >
< / ul >
2015-12-10 18:02:44 +03:00
< form class = "form-inline pull-xs-right" >
2015-11-26 01:01:18 +03:00
< input class = "form-control" type = "text" placeholder = "Search" >
< button class = "btn btn-success-outline" type = "submit" > Search< / button >
< / form >
< / div >
< / nav > <!-- /navbar -->
2015-11-20 00:58:21 +03:00
<!-- Main component for a primary marketing message or call to action -->
< div class = "jumbotron" >
< h1 > Navbar example< / h1 >
2015-11-26 01:01:18 +03:00
< p > This example is a quick exercise to illustrate how the default responsive navbar works. It's placed within a < code > .container< / code > to limit its width and will scroll with the rest of the page's content.< / p >
< p > At the smallest breakpoint, the collapse plugin is used to hide the links and show a menu button to toggle the collapsed content.< / p >
2015-11-20 00:58:21 +03:00
< p >
2015-11-26 01:01:18 +03:00
< a class = "btn btn-lg btn-primary" href = "../../components/navbar" role = "button" > View navbar docs » < / a >
2015-11-20 00:58:21 +03:00
< / p >
< / div >
< / div > <!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
2015-11-26 01:01:18 +03:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" > < / script >
2015-11-20 00:58:21 +03:00
< script > window . jQuery || document . write ( '<script src="../../assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
< script src = "../../dist/js/bootstrap.min.js" > < / script >
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "../../assets/js/ie10-viewport-bug-workaround.js" > < / script >
< / body >
< / html >