Basics of Bootstrap




Bootstrap Example




 

 

 

</div>





My First Blog page

First Bootstrap Program

Welcome

Welcome to our blog, this is my frst blog about the bootstrap

In bootstrap there are two basic classes we use in bootstrap

  • Row
  • Col

<div class= “row”>

<div class=”col”>First column

<div class=”col”>Second column

<div class=”col”>Third column

</div>

This is the basic structure of bootstrap

Here ‘ class = “row” ‘ is a row with 100% width

Here ‘ class = “col” ‘ is a colums which divides it dyanamically based on the count of div’s and the string

In the example given above will give the structure as follows i.e., One row in which there are three colums divided First column Second column Third column