| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 | <!DOCTYPE html><html lang="en"><head>  <title>My first Bootstrap website</title>  <meta charset="utf-8"/>  <meta http-equiv="X-UA-COMPATIBLE" content="IE=Edge"/>  <meta name="viewport" content="width=device-width, initial-scale=1"/>  <link rel="stylesheet" href="../css/bootstrap.css"/>  <link rel="stylesheet" href="styles.css" />  <!--[if lt IE 9]>  <script src="../js/html5shiv.3-7-0.js"></script>  <script src="../js/respond.1-4-2.min.js"></script>  <![endif]--></head><body><div class="container">  <div class="col-md-12 text-center">    <h1>My first Bootstrap blog</h1>  </div>  <hr />  <div class="row">    <div class="col-md-6 col1">      <h3>Column 1</h3>      <!--Nesting starts -->      <div class="row">        <div class="col-md-6 col3">          <h3>Column 4</h3>        </div>        <div class="col-md-6 col4">          <h3>Column 5</h3>        </div>      </div>    </div>    <div class="col-md-6 col2">      <h3>Column 2</h3>    </div>  </div>  <div class="row">    <div class="col-xs-6 col-xs-offset-3 col5">      Hello Learnable    </div>  </div></div>  <!-- https://ajax.googleapis.com/ajax/libs/jquery/1.11.1.jquery.min.js -->  <script src="../js/jquery-1.11.2.min.js"></script>  <script src="../js/bootstrap.js"></script></body></html>
 |