index.html 2 KB
Newer Older
1
2
3
4
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
5
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
Zlatan Vasović's avatar
Zlatan Vasović committed
6
    <meta name="viewport" content="width=device-width, initial-scale=1">
7
8
    <meta name="description" content="">
    <meta name="author" content="">
9
    <link rel="icon" href="../../favicon.ico">
10

Nicole's avatar
Nicole committed
11
    <title>Navbar Template for Bootstrap</title>
12
13

    <!-- Bootstrap core CSS -->
wangsai's avatar
wangsai committed
14
    <link href="../../dist/css/bootstrap.min.css" rel="stylesheet">
15
16

    <!-- Custom styles for this template -->
Nicole's avatar
Nicole committed
17
    <link href="navbar.css" rel="stylesheet">
18

19
20
    <!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
    <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script>
21
22
23
24
25
26
  </head>

  <body>

    <div class="container">

Mark Otto's avatar
Mark Otto committed
27
28
29
30
31
32
33
34
35
36
37
      <div class="collapse" id="navbar-header">
        <div class="inverse p-a">
          <h3>Collapsed content</h3>
          <p>Toggleable via the navbar brand.</p>
        </div>
      </div>
      <div class="navbar navbar-default navbar-static-top">
        <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar-header">
          &#9776;
        </button>
      </div>
38
39
40
41

      <!-- Main component for a primary marketing message or call to action -->
      <div class="jumbotron">
        <h1>Navbar example</h1>
Mark Otto's avatar
Mark Otto committed
42
        <p>This example is a quick exercise to illustrate how the default navbar works. It's placed within a <code>.container</code> to limit it's width and will scroll with the rest of the page's content.</p>
43
        <p>
44
          <a class="btn btn-lg btn-primary" href="../../components/#navbar" role="button">View navbar docs &raquo;</a>
45
46
47
48
49
        </p>
      </div>

    </div> <!-- /container -->

50

51
52
53
    <!-- Bootstrap core JavaScript
    ================================================== -->
    <!-- Placed at the end of the document so the pages load faster -->
XhmikosR's avatar
XhmikosR committed
54
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
55
    <script src="../../dist/js/bootstrap.min.js"></script>
56
  </body>
57
</html>