2013-06-24 02:17:08 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta name = "description" content = "" >
< meta name = "author" content = "" >
2013-08-16 20:03:52 +02:00
< link rel = "shortcut icon" href = "../../assets/ico/favicon.png" >
2013-02-26 09:42:24 +01:00
2013-07-21 08:17:01 +02:00
< title > Static Top Navbar Example for Bootstrap< / title >
2013-02-26 09:42:24 +01:00
2013-06-24 02:17:08 +02:00
<!-- Bootstrap core CSS -->
2013-08-16 02:39:37 +02:00
< link href = "../../dist/css/bootstrap.css" rel = "stylesheet" >
2013-02-26 09:42:24 +01:00
2013-06-24 02:17:08 +02:00
<!-- Custom styles for this template -->
2013-07-21 08:30:08 +02:00
< link href = "navbar-static-top.css" rel = "stylesheet" >
2013-08-18 08:28:52 +02:00
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- [if lt IE 9]>
< script src = "../../assets/js/html5shiv.js" > < / script >
< script src = "../../assets/js/respond.min.js" > < / script >
<![endif]-->
2013-06-24 02:17:08 +02:00
< / head >
2013-02-26 09:42:24 +01:00
2013-06-24 02:17:08 +02:00
< body >
2013-02-26 09:42:24 +01:00
2013-06-24 02:17:08 +02:00
<!-- Static navbar -->
2013-08-19 00:35:40 +02:00
< div class = "navbar navbar-default navbar-static-top" >
2013-02-26 09:42:24 +01:00
< div class = "container" >
2013-08-16 02:39:37 +02:00
< div class = "navbar-header" >
< button type = "button" class = "navbar-toggle" data-toggle = "collapse" data-target = ".navbar-collapse" >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< / button >
< a class = "navbar-brand" href = "#" > Project name< / a >
< / div >
< div class = "navbar-collapse collapse" >
2013-04-28 15:10:01 +02:00
< ul class = "nav navbar-nav" >
2013-02-26 09:42:24 +01:00
< li class = "active" > < a href = "#" > Home< / a > < / li >
< li > < a href = "#about" > About< / a > < / li >
< li > < a href = "#contact" > Contact< / a > < / li >
< li class = "dropdown" >
< a href = "#" class = "dropdown-toggle" data-toggle = "dropdown" > Dropdown < b class = "caret" > < / b > < / a >
< ul class = "dropdown-menu" >
< li > < a href = "#" > Action< / a > < / li >
< li > < a href = "#" > Another action< / a > < / li >
< li > < a href = "#" > Something else here< / a > < / li >
< li class = "divider" > < / li >
2013-08-16 02:39:37 +02:00
< li class = "dropdown-header" > Nav header< / li >
2013-02-26 09:42:24 +01:00
< li > < a href = "#" > Separated link< / a > < / li >
< li > < a href = "#" > One more separated link< / a > < / li >
< / ul >
< / li >
< / ul >
2013-08-16 02:39:37 +02:00
< ul class = "nav navbar-nav navbar-right" >
2013-08-16 07:42:43 +02:00
< li > < a href = "../navbar/" > Default< / a > < / li >
< li class = "active" > < a href = "./" > Static top< / a > < / li >
< li > < a href = "../navbar-fixed-top/" > Fixed top< / a > < / li >
2013-02-26 09:42:24 +01:00
< / ul >
< / div > <!-- /.nav - collapse -->
< / div >
< / div >
2013-06-24 02:17:08 +02:00
2013-02-26 09:42:24 +01:00
< div class = "container" >
<!-- Main component for a primary marketing message or call to action -->
< div class = "jumbotron" >
< h1 > Navbar example< / h1 >
2013-08-16 20:35:19 +02:00
< p > This example is a quick exercise to illustrate how the default, static and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.< / p >
< p > To see the difference between static and fixed top navbars, just scroll.< / p >
2013-02-26 09:42:24 +01:00
< p >
2013-08-24 17:32:23 +02:00
< a class = "btn btn-lg btn-primary" href = "../../components/#navbar" role = "button" > View navbar docs » < / a >
2013-02-26 09:42:24 +01:00
< / p >
< / div >
< / div > <!-- /container -->
2013-06-24 02:17:08 +02:00
2013-08-17 21:32:11 +02:00
2013-08-02 11:53:25 +02:00
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
2013-08-16 02:39:37 +02:00
< script src = "../../assets/js/jquery.js" > < / script >
< script src = "../../dist/js/bootstrap.min.js" > < / script >
2013-06-24 02:17:08 +02:00
< / body >
2013-07-28 17:37:53 +02:00
< / html >