Advertisement
Guest User

Untitled

a guest
Jun 25th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.94 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1">
  7.     <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8.     <meta name="description" content="">
  9.     <meta name="author" content="">
  10.     <link rel="icon" href="favicon.ico">
  11.  
  12.     <title>Starter Template for Bootstrap</title>
  13.  
  14.     <!-- Bootstrap core CSS -->
  15.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
  16.          integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  17.  
  18.     <!-- Custom styles for this template -->
  19.     <link href="css/starter-template.css" rel="stylesheet">
  20.  
  21.     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  22.     <!--[if lt IE 9]>
  23.    <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  24.    <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  25.    <![endif]-->
  26. </head>
  27.  
  28. <body>
  29.  
  30. <nav class="navbar navbar-inverse navbar-fixed-top">
  31.     <div class="container">
  32.         <div class="navbar-header">
  33.             <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar"
  34.                    aria-expanded="false" aria-controls="navbar">
  35.                 <span class="sr-only">Toggle navigation</span>
  36.                 <span class="icon-bar"></span>
  37.                 <span class="icon-bar"></span>
  38.                 <span class="icon-bar"></span>
  39.             </button>
  40.             <a class="navbar-brand" href="#">Project name</a>
  41.         </div>
  42.         <div id="navbar" class="collapse navbar-collapse">
  43.             <ul class="nav navbar-nav">
  44.                 <li class="active"><a href="#">Home</a></li>
  45.                 <li><a href="#about">About</a></li>
  46.                 <li><a href="#contact">Contact</a></li>
  47.             </ul>
  48.         </div><!--/.nav-collapse -->
  49.     </div>
  50. </nav>
  51.  
  52. <div class="container">
  53.  
  54.     <div class="starter-template">
  55.         <h1>Bootstrap starter template</h1>
  56.         <p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a
  57.             mostly barebones HTML document.</p>
  58.     </div>
  59.  
  60. </div><!-- /.container -->
  61.  
  62.  
  63. <!-- Bootstrap core JavaScript
  64. ================================================== -->
  65. <!-- Placed at the end of the document so the pages load faster -->
  66. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  67. <!-- Latest compiled and minified JavaScript -->
  68. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
  69.        integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
  70.        crossorigin="anonymous"></script>
  71. </body>
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement