bootstrap-source/bootstrap-3.0.3/examples/navbar-fixed-top/index.html
changeset 54 0ded9d7748b7
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/bootstrap-source/bootstrap-3.0.3/examples/navbar-fixed-top/index.html	Fri Dec 20 22:49:16 2013 +0100
     1.3 @@ -0,0 +1,91 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html lang="en">
     1.6 +  <head>
     1.7 +    <meta charset="utf-8">
     1.8 +    <meta http-equiv="X-UA-Compatible" content="IE=edge">
     1.9 +    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    1.10 +    <meta name="description" content="">
    1.11 +    <meta name="author" content="">
    1.12 +    <link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
    1.13 +
    1.14 +    <title>Fixed Top Navbar Example for Bootstrap</title>
    1.15 +
    1.16 +    <!-- Bootstrap core CSS -->
    1.17 +    <link href="../../dist/css/bootstrap.css" rel="stylesheet">
    1.18 +
    1.19 +    <!-- Custom styles for this template -->
    1.20 +    <link href="navbar-fixed-top.css" rel="stylesheet">
    1.21 +
    1.22 +    <!-- Just for debugging purposes. Don't actually copy this line! -->
    1.23 +    <!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
    1.24 +
    1.25 +    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
    1.26 +    <!--[if lt IE 9]>
    1.27 +      <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
    1.28 +      <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
    1.29 +    <![endif]-->
    1.30 +  </head>
    1.31 +
    1.32 +  <body>
    1.33 +
    1.34 +    <!-- Fixed navbar -->
    1.35 +    <div class="navbar navbar-default navbar-fixed-top" role="navigation">
    1.36 +      <div class="container">
    1.37 +        <div class="navbar-header">
    1.38 +          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
    1.39 +            <span class="sr-only">Toggle navigation</span>
    1.40 +            <span class="icon-bar"></span>
    1.41 +            <span class="icon-bar"></span>
    1.42 +            <span class="icon-bar"></span>
    1.43 +          </button>
    1.44 +          <a class="navbar-brand" href="#">Project name</a>
    1.45 +        </div>
    1.46 +        <div class="navbar-collapse collapse">
    1.47 +          <ul class="nav navbar-nav">
    1.48 +            <li class="active"><a href="#">Home</a></li>
    1.49 +            <li><a href="#about">About</a></li>
    1.50 +            <li><a href="#contact">Contact</a></li>
    1.51 +            <li class="dropdown">
    1.52 +              <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a>
    1.53 +              <ul class="dropdown-menu">
    1.54 +                <li><a href="#">Action</a></li>
    1.55 +                <li><a href="#">Another action</a></li>
    1.56 +                <li><a href="#">Something else here</a></li>
    1.57 +                <li class="divider"></li>
    1.58 +                <li class="dropdown-header">Nav header</li>
    1.59 +                <li><a href="#">Separated link</a></li>
    1.60 +                <li><a href="#">One more separated link</a></li>
    1.61 +              </ul>
    1.62 +            </li>
    1.63 +          </ul>
    1.64 +          <ul class="nav navbar-nav navbar-right">
    1.65 +            <li><a href="../navbar/">Default</a></li>
    1.66 +            <li><a href="../navbar-static-top/">Static top</a></li>
    1.67 +            <li class="active"><a href="./">Fixed top</a></li>
    1.68 +          </ul>
    1.69 +        </div><!--/.nav-collapse -->
    1.70 +      </div>
    1.71 +    </div>
    1.72 +
    1.73 +    <div class="container">
    1.74 +
    1.75 +      <!-- Main component for a primary marketing message or call to action -->
    1.76 +      <div class="jumbotron">
    1.77 +        <h1>Navbar example</h1>
    1.78 +        <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>
    1.79 +        <p>To see the difference between static and fixed top navbars, just scroll.</p>
    1.80 +        <p>
    1.81 +          <a class="btn btn-lg btn-primary" href="../../components/#navbar" role="button">View navbar docs &raquo;</a>
    1.82 +        </p>
    1.83 +      </div>
    1.84 +
    1.85 +    </div> <!-- /container -->
    1.86 +
    1.87 +
    1.88 +    <!-- Bootstrap core JavaScript
    1.89 +    ================================================== -->
    1.90 +    <!-- Placed at the end of the document so the pages load faster -->
    1.91 +    <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
    1.92 +    <script src="../../dist/js/bootstrap.min.js"></script>
    1.93 +  </body>
    1.94 +</html>
Impressum Datenschutzerklärung