Bootstrap Framework
What is Bootstrap?
• Bootstrap is a free front-end framework for faster and easier web development.
• Bootstrap includes HTML and CSS based design templates for typography, forms,
buttons, tables, navigation, modals, image carousels and many other, as well as
optional JavaScript plugins.
• Bootstrap also gives we the ability to easily create responsive designs.
What is Responsive Web Design?
• Responsive web design is about creating web sites which automatically adjust
themselves to look good on all devices, from small phones to large desktops.
Why Use Bootstrap?
Advantages of Bootstrap:
• Easy to use: Anybody with just basic knowledge of HTML and CSS can start
using Bootstrap
• Responsive features: Bootstrap's responsive CSS adjusts to phones, tablets, and
desktops
• Mobile-first approach: In Bootstrap, mobile-first styles are part of the core
framework
• Browser compatibility: Bootstrap 4 is compatible with all modern browsers
(Chrome, Firefox, Internet Explorer 10+, Edge, Safari, and Opera)
Where to Get Bootstrap?
• There are two ways to start using Bootstrap on your own web site
We can:
• Download Bootstrap from getbootstrap.com
• Include Bootstrap from a CDN
Bootstrap CDN
• If we don't want to download and host Bootstrap yourself, we can include it from
a CDN (Content Delivery Network).
• MaxCDN provides CDN support for Bootstrap's CSS and JavaScript. We must
also include jQuery:
CDN Link:
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstra
pcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/j
query/3.5.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstr
ap/3.4.1/js/bootstrap.min.js"></script>
Bootstrap-Container:
Containers are used to pad the content inside of them, and there are two container
classes available:
• The .container class provides a responsive fixed width container.
• The .container-fluid class provides a full width container, spanning the entire
width of the viewport.
Container Border and Color
<div class="container p-3 my-3 border"></div>
<div class="container p-3 my-3 bg-dark text-
white"></div>
<div class="container p-3 my-3 bg-primary text-
white"></div>
<body>
<div class="container p-3 my-3 border">
<h1>My First Bootstrap Page</h1>
<p>This container has a border and some extra padding and margins.</p>
</div>
<div class="container p-3 my-3 bg-dark text-white">
<h1>My First Bootstrap Page</h1>
<p>This container has a dark background color and a white text, and some extra padding and margins.</p>
</div>
<div class="container p-3 my-3 bg-primary text-white">
<h1>My First Bootstrap Page</h1>
<p>This container has a blue background color and a white text, and some extra padding and margins.</p>
</div>
</body>
<body>
<div class="container">
<h1>Responsive Containers</h1>
<p>Resize the browser window to see the effect.</p>
</div>
<div class="container-sm border">.container-sm</div>
<div class="container-md mt-3 border">.container-md</div>
<div class="container-lg mt-3 border">.container-lg</div>
<div class="container-xl mt-3 border">.container-xl</div>
</body>
Grid Classes:
The Bootstrap grid system has four classes:
• xs (for phones - screens less than 768px wide)
• sm (for tablets - screens equal to or greater than 768px wide)
• md (for small laptops - screens equal to or greater than 992px wide)
• lg (for laptops and desktops - screens equal to or greater than 1200px
wide)
Bootstrap Grid System:
span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1
span 4 span 4 span 4
span 4 span 8
span 6 span 6
span 12
Basic Structure of a Bootstrap Grid
The following is a basic structure of a Bootstrap grid:
<div class="row">
<div class="col-*-*"></div>
<div class="col-*-*"></div>
</div>
<div class="row">
<div class="col-*-*"></div>
<div class="col-*-*"></div>
<div class="col-*-*"></div>
</div>
<div class="row">
...
</div>
• First; create a row (<div class="row">).
• Then, add the desired number of columns (tags with appropriate .col-*-* classes).
• Note that numbers in .col-*-* should always add up to 12 for each row.
Three Equal Columns
• .col-sm-4
• .col-sm-4
• .col-sm-4
The following example shows how to get a three equal-width columns
starting at tablets and scaling to large desktops.
On mobile phones or screens that are less than 768px wide, the columns
will automatically stack:
Two Unequal Columns
• .col-sm-4
• .col-sm-8
The following example shows how to get two various-width columns starting at
tablets and scaling to large desktops:
Bootstrap Forms
Bootstrap Form Layouts
Bootstrap provides three types of form layouts:
• Vertical form (this is default)
• Horizontal form
• Inline form
Standard rules for all three form layouts:
• Wrap labels and form controls in <div class="form-group"> (needed for optimum spacing)
• Add class .form-control to all textual <input>, <textarea>, and <select> elements
Bootstrap Inline Form
Bootstrap Horizontal Form
Bootstrap Vertical form
Bootstrap

Bootstrap

  • 1.
  • 2.
    What is Bootstrap? •Bootstrap is a free front-end framework for faster and easier web development. • Bootstrap includes HTML and CSS based design templates for typography, forms, buttons, tables, navigation, modals, image carousels and many other, as well as optional JavaScript plugins. • Bootstrap also gives we the ability to easily create responsive designs.
  • 3.
    What is ResponsiveWeb Design? • Responsive web design is about creating web sites which automatically adjust themselves to look good on all devices, from small phones to large desktops.
  • 4.
    Why Use Bootstrap? Advantagesof Bootstrap: • Easy to use: Anybody with just basic knowledge of HTML and CSS can start using Bootstrap • Responsive features: Bootstrap's responsive CSS adjusts to phones, tablets, and desktops • Mobile-first approach: In Bootstrap, mobile-first styles are part of the core framework • Browser compatibility: Bootstrap 4 is compatible with all modern browsers (Chrome, Firefox, Internet Explorer 10+, Edge, Safari, and Opera)
  • 5.
    Where to GetBootstrap? • There are two ways to start using Bootstrap on your own web site We can: • Download Bootstrap from getbootstrap.com • Include Bootstrap from a CDN
  • 6.
    Bootstrap CDN • Ifwe don't want to download and host Bootstrap yourself, we can include it from a CDN (Content Delivery Network). • MaxCDN provides CDN support for Bootstrap's CSS and JavaScript. We must also include jQuery:
  • 7.
    CDN Link: <!-- Latestcompiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstra pcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"> <!-- jQuery library --> <script src="https://ajax.googleapis.com/ajax/libs/j query/3.5.1/jquery.min.js"></script> <!-- Latest compiled JavaScript --> <script src="https://maxcdn.bootstrapcdn.com/bootstr ap/3.4.1/js/bootstrap.min.js"></script>
  • 9.
    Bootstrap-Container: Containers are usedto pad the content inside of them, and there are two container classes available: • The .container class provides a responsive fixed width container. • The .container-fluid class provides a full width container, spanning the entire width of the viewport.
  • 10.
    Container Border andColor <div class="container p-3 my-3 border"></div> <div class="container p-3 my-3 bg-dark text- white"></div> <div class="container p-3 my-3 bg-primary text- white"></div>
  • 11.
    <body> <div class="container p-3my-3 border"> <h1>My First Bootstrap Page</h1> <p>This container has a border and some extra padding and margins.</p> </div> <div class="container p-3 my-3 bg-dark text-white"> <h1>My First Bootstrap Page</h1> <p>This container has a dark background color and a white text, and some extra padding and margins.</p> </div> <div class="container p-3 my-3 bg-primary text-white"> <h1>My First Bootstrap Page</h1> <p>This container has a blue background color and a white text, and some extra padding and margins.</p> </div> </body>
  • 13.
    <body> <div class="container"> <h1>Responsive Containers</h1> <p>Resizethe browser window to see the effect.</p> </div> <div class="container-sm border">.container-sm</div> <div class="container-md mt-3 border">.container-md</div> <div class="container-lg mt-3 border">.container-lg</div> <div class="container-xl mt-3 border">.container-xl</div> </body>
  • 15.
    Grid Classes: The Bootstrapgrid system has four classes: • xs (for phones - screens less than 768px wide) • sm (for tablets - screens equal to or greater than 768px wide) • md (for small laptops - screens equal to or greater than 992px wide) • lg (for laptops and desktops - screens equal to or greater than 1200px wide)
  • 16.
    Bootstrap Grid System: span1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 1 span 4 span 4 span 4 span 4 span 8 span 6 span 6 span 12
  • 17.
    Basic Structure ofa Bootstrap Grid The following is a basic structure of a Bootstrap grid: <div class="row"> <div class="col-*-*"></div> <div class="col-*-*"></div> </div> <div class="row"> <div class="col-*-*"></div> <div class="col-*-*"></div> <div class="col-*-*"></div> </div> <div class="row"> ... </div>
  • 18.
    • First; createa row (<div class="row">). • Then, add the desired number of columns (tags with appropriate .col-*-* classes). • Note that numbers in .col-*-* should always add up to 12 for each row.
  • 19.
    Three Equal Columns •.col-sm-4 • .col-sm-4 • .col-sm-4 The following example shows how to get a three equal-width columns starting at tablets and scaling to large desktops. On mobile phones or screens that are less than 768px wide, the columns will automatically stack:
  • 20.
    Two Unequal Columns •.col-sm-4 • .col-sm-8 The following example shows how to get two various-width columns starting at tablets and scaling to large desktops:
  • 21.
    Bootstrap Forms Bootstrap FormLayouts Bootstrap provides three types of form layouts: • Vertical form (this is default) • Horizontal form • Inline form Standard rules for all three form layouts: • Wrap labels and form controls in <div class="form-group"> (needed for optimum spacing) • Add class .form-control to all textual <input>, <textarea>, and <select> elements
  • 22.
  • 23.
  • 24.