<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="utf-8" />
    <title>Bootstrap, from Twitter</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="" />
    <meta name="author" content="" />
    <!-- Le styles -->
    <link data-require="bootstrap-css" data-semver="3.3.6" rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.css" />
    <style>
      body {
        padding-top: 60px;
      }
      @media (max-width: 979px) {

        /* Remove any padding from the body */
        body {
          padding-top: 0;
        }
      }
    </style>
    <link href="style.css" rel="stylesheet" />
    <!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
    <!--[if lt IE 9]>
      <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <!-- Le fav and touch icons -->
    <link rel="shortcut icon" href="images/favicon.ico" />
    <link rel="apple-touch-icon" href="images/apple-touch-icon.png" />
    <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png" />
    <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png" />
    <!-- Le javascript
    ================================================== -->
    <script data-require="jquery" data-semver="2.2.0" src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
    <script src="script.js"></script>
  </head>

  <body>

    <div class="container">
      <h1>Bootstrap btn-group with link and pull-right</h1>
      <div class="btn-toolbar clearfix" role="toolbar" aria-label="Toolbar with button groups"> 
        <div class="btn-group" role="group" aria-label="First group"> 
          <button type="button" class="btn btn-default">1</button> 
          <button type="button" class="btn btn-default">2</button> 
          <button type="button" class="btn btn-default">3</button> 
          <button type="button" class="btn btn-default">4</button> 
        </div> 
        <div class="btn-group" role="group" aria-label="Second group"> 
          <button type="button" class="btn btn-default">5</button> 
          <button type="button" class="btn btn-default">6</button> 
          <button type="button" class="btn btn-default">7</button> 
        </div> 
        <div class="btn-group" role="group">
          <a href="#">Super helpful link</a>
        </div>
        <div class="btn-group pull-right" role="group" aria-label="Third group"> 
          <button type="button" class="btn btn-default">8</button> 
        </div> 
      </div>
      <br/>
      <div class="alert alert-warning">
        <span class="glyphicon glyphicon-warning-sign"></span>
        The link text (baseline) is not aligned with the buttons.
      </div>
    </div>
    <!-- /container -->
  </body>

</html>
// Add your javascript here
/* Put your css in here */