mikeerickson
11/1/2016 - 12:15 AM

Bootstrap Starter HTML

Bootstrap Starter HTML

<!doctype html>
<html>
  <head>
      <title>Development Sever</title>
      <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
      <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto">
      <style>
        body { font-family: 'Roboto', serif; font-size: 48px; }
        .jumbotron { font-size: 3rem; padding: 10px; text-align: center; }
      </style>
  </head>
  <body>
      <div class="jumbotron">
          Development Server
          <h5>Use <code>$ live-server</code> (installed globally)</h5>
      </div>
  </body>
</html>