update bootstrap to 3.0.0-rc2
[bootswatch] / bower_components / bootstrap / examples / navbar-static-top / index.html
1 <!DOCTYPE html>
2 <html lang="en">
3   <head>
4     <meta charset="utf-8">
5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
6     <meta name="description" content="">
7     <meta name="author" content="">
8     <link rel="shortcut icon" href="../../assets/ico/favicon.png">
9
10     <title>Static Top Navbar Example for Bootstrap</title>
11
12     <!-- Bootstrap core CSS -->
13     <link href="../../dist/css/bootstrap.css" rel="stylesheet">
14
15     <!-- Custom styles for this template -->
16     <link href="navbar-static-top.css" rel="stylesheet">
17   </head>
18
19   <body>
20
21     <!-- Static navbar -->
22     <div class="navbar navbar-static-top">
23       <div class="container">
24         <div class="navbar-header">
25           <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
26             <span class="icon-bar"></span>
27             <span class="icon-bar"></span>
28             <span class="icon-bar"></span>
29           </button>
30           <a class="navbar-brand" href="#">Project name</a>
31         </div>
32         <div class="navbar-collapse collapse">
33           <ul class="nav navbar-nav">
34             <li class="active"><a href="#">Home</a></li>
35             <li><a href="#about">About</a></li>
36             <li><a href="#contact">Contact</a></li>
37             <li class="dropdown">
38               <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
39               <ul class="dropdown-menu">
40                 <li><a href="#">Action</a></li>
41                 <li><a href="#">Another action</a></li>
42                 <li><a href="#">Something else here</a></li>
43                 <li class="divider"></li>
44                 <li class="dropdown-header">Nav header</li>
45                 <li><a href="#">Separated link</a></li>
46                 <li><a href="#">One more separated link</a></li>
47               </ul>
48             </li>
49           </ul>
50           <ul class="nav navbar-nav navbar-right">
51             <li><a href="../navbar/">Default</a></li>
52             <li class="active"><a href="./">Static top</a></li>
53             <li><a href="../navbar-fixed-top/">Fixed top</a></li>
54           </ul>
55         </div><!--/.nav-collapse -->
56       </div>
57     </div>
58
59
60     <div class="container">
61
62       <!-- Main component for a primary marketing message or call to action -->
63       <div class="jumbotron">
64         <h1>Navbar example</h1>
65         <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>
66         <p>To see the difference between static and fixed top navbars, just scroll.</p>
67         <p>
68           <a class="btn btn-large btn-primary" href="../../components/#navbar">View navbar docs &raquo;</a>
69         </p>
70       </div>
71
72     </div> <!-- /container -->
73
74     <!-- Bootstrap core JavaScript
75     ================================================== -->
76     <!-- Placed at the end of the document so the pages load faster -->
77     <script src="../../assets/js/jquery.js"></script>
78     <script src="../../dist/js/bootstrap.min.js"></script>
79   </body>
80 </html>