2013-06-24 02:17:08 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
2013-09-24 18:43:16 +02:00
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2015-10-06 13:35:39 +02:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2015-01-23 20:34:52 +01:00
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
2013-06-24 02:17:08 +02:00
< meta name = "description" content = "" >
< meta name = "author" content = "" >
2014-03-25 08:30:04 +01:00
< link rel = "icon" href = "../../favicon.ico" >
2013-06-24 02:17:08 +02:00
2013-07-21 08:17:01 +02:00
< title > Navbar Template for Bootstrap< / title >
2013-06-24 02:17:08 +02:00
<!-- Bootstrap core CSS -->
2014-01-01 15:29:13 +01:00
< link href = "../../dist/css/bootstrap.min.css" rel = "stylesheet" >
2013-06-24 02:17:08 +02:00
<!-- Custom styles for this template -->
2013-07-21 08:30:08 +02:00
< link href = "navbar.css" rel = "stylesheet" >
2013-06-24 02:17:08 +02:00
< / head >
< body >
< div class = "container" >
2015-08-26 22:03:47 +02: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" >
2014-11-30 00:07:13 +01:00
☰
< / button >
2015-08-26 22:03:47 +02:00
< 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-07 02:30:25 +01:00
< form class = "form-inline pull-xs-right" >
2015-08-26 22:03:47 +02:00
< input class = "form-control" type = "text" placeholder = "Search" >
< button class = "btn btn-success-outline" type = "submit" > Search< / button >
2015-09-20 17:57:03 +02:00
< / form >
2015-08-26 22:03:47 +02:00
< / div >
< / nav > <!-- /navbar -->
2013-06-24 02:17:08 +02:00
<!-- Main component for a primary marketing message or call to action -->
< div class = "jumbotron" >
< h1 > Navbar example< / h1 >
2015-08-26 22:03:47 +02: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 >
2013-06-24 02:17:08 +02:00
< p >
2015-08-29 08:04:09 +02:00
< a class = "btn btn-lg btn-primary" href = "../../components/navbar" role = "button" > View navbar docs » < / a >
2013-06-24 02:17:08 +02:00
< / p >
< / div >
< / div > <!-- /container -->
2013-08-17 21:32:11 +02:00
2013-08-06 08:46:08 +02:00
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
2015-09-06 12:03:34 +02:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" > < / script >
2015-07-25 23:25:00 +02:00
< script > window . jQuery || document . write ( '<script src="../../assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
2013-08-16 02:39:37 +02:00
< script src = "../../dist/js/bootstrap.min.js" > < / script >
2015-09-06 11:16:01 +02:00
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "../../assets/js/ie10-viewport-bug-workaround.js" > < / script >
2013-06-24 02:17:08 +02:00
< / body >
2013-07-28 17:37:53 +02:00
< / html >