尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
An Introduction To
Bootstrap
By: Jai Shrivastav
Topics
• Bootstrap Introduction
• Scaffolding
• CSS
• Layout Component
2
Bootstrap Introduction
• Bootstrap was released in August 2011 by Twitter.
• It is an open source product, developed by Mark Otto
and Jacob Thornton.
• It was developed to standardize the frontend toolsets of
engineers across the company.
• Most exciting feature of bootstrap is that it allows to build
responsive web designs.
• The websites like Toyota.com,Appsetter, Quicklinkr &
many more are designed using bootstrap.
3
Bootstrap Scaffolding
• File Structure
• Grid System
• Layout
• Responsive Design
4
File Structure
• File Structure of Bootstrap:
– bootstrap/
– css/
» bootstrap.css
» bootstrap.min.css
– js/
» bootstrap.js
» bootstrap.min.js
– img/
» glyphicons-halflings.png
» glyphicons-halflings-white.png
– README.md
5
• To use bootstrap we include the link to the CSS
stylesheet and the JavaScript:
<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/bootstrap.min.js"></script>
6
Grid System
• Grid can be of two types:
– Fixed Grid
– Fluid Grid
• The default (fixed) Bootstrap grid system utilizes 12
columns, making for a 940px-wide container without
responsive features enabled. With the responsive CSS
file added, the grid adapts to be 724px or 1170px wide,
depending on your viewport.
• An example of the 12 possible columns is in below given
figure.
7
• To create a simple layout, create a container with a
<div> that has a class of .row and add the appropriate
amount of .span* columns. Since we have a 12-column
grid, we just need the amount of .span* columns to equal
12.
8
<div class="row">
<div class="span8">...</div>
<div class="span4">...</div>
</div>
• Nesting Columns: To nest your content with the
default grid, inside of a .span*, simply add a new .row
with enough .span* that it equals the number of spans
of the parent container
9
<div class="row">
<div class="span9">
Level 1 of column
<div class="row">
<div class="span6">Level 2</div>
<div class="span3">Level 2</div>
</div>
</div>
</div>
10
• Fluid Grid System: The fluid grid system uses
percentages instead of pixels for column widths. It has the
same responsive capabilities as our fixed grid system,
ensuring proper proportions for key screen resolutions
and devices. You can make any row “fluid” by changing
.row to .row-fluid.
• Nesting Fluid Grid: It is slightly different
<div class="row-fluid">
<div class="span8">
<div class="row">
<div class="span6">...</div>
<div class="span6">...</div>
</div>
</div>
</div> 11
Container Layouts
• To add a fixed-width, centered layout to your page,
simply wrap the content in
<div class="container">...</div>.
• If you would like to use a fluid layout but want to wrap
everything in a container, use the following:
<div class="container-fluid">...</div>.
12
Responsive Design
• Responsive design is a method for taking all of
the existing content that is on the page and
optimizing it for the device that is viewing it.
• To target these different widths, Bootstrap uses
CSS media queries to measure the width of the
browser viewport and then, using conditionals,
changes which parts of the stylesheets are
loaded. Using the width of the browser viewport,
Bootstrap can then optimize the content using a
combination of ratios or widths, but it mostly
relies on min-width and max-width properties.
13
• To turn on the responsive features of Bootstrap, you need
to add a <meta> tag to the <head> of your web page. If
you haven’t downloaded the compiled source, you will
also need to add the responsive CSS file. An example of
required files looks like this:
<!DOCTYPE html>
<html>
<head>
<title>My amazing Bootstrap site!</title>
<meta name="viewport" content="width=device-width,
initial- scale=1.0">
<link href="/css/bootstrap.css" rel="stylesheet">
<link href="/css/bootstrap-responsive.css"
rel="stylesheet">
</head>
14
Bootstrap CSS
• It provide styles for common HTML elements like
typography, code, tables, forms, buttons & plus includes
Glyphicons, icon set.
• For example, it provide four classes to style a table:
.table-striped, .table-bordered, .table-hover, and .table-
condensed.
15
Bootstrap Layout Component
• Bootstrap provides a toolkit of flexible components
that can be used in designing application
interfaces, web features, and more.
• Dropdown Menus:
The following code creates a basic dropdown
menu:
<ul class="dropdown-menu" role="menu" aria- labelledby
="dropdownMenu">
<li><a tabindex="-1" href="#">Action</a></li>
<li><a tabindex="-1" href="#">Another action</a></li>
<li><a tabindex="-1" href="#">Something else here</a></li>
<li class="divider"></li>
<li><a tabindex="-1" href="#">Separated link</a></li>
</ul>
16
• Button Groups: class=‘btn-group’
• Navigation Elements : class=‘nav’
• Pagination: class=‘pagination’.
17

More Related Content

What's hot

Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
Mukesh Kumar
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
Collaboration Technologies
 
Bootstrap - Basics
Bootstrap - BasicsBootstrap - Basics
Bootstrap - Basics
FirosK2
 
Bootstrap
BootstrapBootstrap
Bootstrap
AvinashChunduri2
 
Bootstrap.pptx
Bootstrap.pptxBootstrap.pptx
Bootstrap.pptx
vishal choudhary
 
Flexbox and Grid Layout
Flexbox and Grid LayoutFlexbox and Grid Layout
Flexbox and Grid Layout
Rachel Andrew
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
Eliran Eliassy
 
Bootstrap
BootstrapBootstrap
Bootstrap
Jadson Santos
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
Ron Reiter
 
Bootstrap PPT Part - 2
Bootstrap PPT Part - 2Bootstrap PPT Part - 2
Bootstrap PPT Part - 2
EPAM Systems
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
WordPress Memphis
 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentation
umesh patil
 
Bootstrap Framework
Bootstrap Framework Bootstrap Framework
Bootstrap Framework
Yaowaluck Promdee
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
Chris Poteet
 
Css backgrounds
Css   backgroundsCss   backgrounds
Css backgrounds
AbhishekMondal42
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
Rachel Andrew
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
Bernardo Raposo
 
Css3
Css3Css3
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
Singsys Pte Ltd
 
Css
CssCss

What's hot (20)

Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
 
Bootstrap - Basics
Bootstrap - BasicsBootstrap - Basics
Bootstrap - Basics
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Bootstrap.pptx
Bootstrap.pptxBootstrap.pptx
Bootstrap.pptx
 
Flexbox and Grid Layout
Flexbox and Grid LayoutFlexbox and Grid Layout
Flexbox and Grid Layout
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
 
Bootstrap PPT Part - 2
Bootstrap PPT Part - 2Bootstrap PPT Part - 2
Bootstrap PPT Part - 2
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
Html and css presentation
Html and css presentationHtml and css presentation
Html and css presentation
 
Bootstrap Framework
Bootstrap Framework Bootstrap Framework
Bootstrap Framework
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
 
Css backgrounds
Css   backgroundsCss   backgrounds
Css backgrounds
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
 
HTML & CSS Masterclass
HTML & CSS MasterclassHTML & CSS Masterclass
HTML & CSS Masterclass
 
Css3
Css3Css3
Css3
 
Html5 tutorial for beginners
Html5 tutorial for beginnersHtml5 tutorial for beginners
Html5 tutorial for beginners
 
Css
CssCss
Css
 

Similar to An introduction to bootstrap

Bootstrap [part 1]
Bootstrap [part 1]Bootstrap [part 1]
Bootstrap [part 1]
Ghanshyam Patel
 
Twitter bootstrap training_session_ppt
Twitter bootstrap training_session_pptTwitter bootstrap training_session_ppt
Twitter bootstrap training_session_ppt
Radheshyam Kori
 
BOTSTRAP.ppt
BOTSTRAP.pptBOTSTRAP.ppt
BOTSTRAP.ppt
068PrateekRathore
 
Bootstrap
Bootstrap Bootstrap
Bootstrap
PumoTechnovation
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
AirticsTrainer
 
Lect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptxLect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptx
zainm7032
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
imdurgesh
 
Reboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in researchReboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in research
AadiChauhan2
 
Introduction to Responsive Web Development
Introduction to Responsive Web DevelopmentIntroduction to Responsive Web Development
Introduction to Responsive Web Development
Nikhil Baby
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
Wahyu Putra
 
Battle of the Front-End Frameworks: Bootstrap vs. Foundation
Battle of the Front-End Frameworks: Bootstrap vs. FoundationBattle of the Front-End Frameworks: Bootstrap vs. Foundation
Battle of the Front-End Frameworks: Bootstrap vs. Foundation
Rachel Cherry
 
Web technologies part-2
Web technologies part-2Web technologies part-2
Web technologies part-2
Michael Anthony
 
Know the reason behind choosing bootstrap as css framework
Know the reason behind choosing bootstrap as css frameworkKnow the reason behind choosing bootstrap as css framework
Know the reason behind choosing bootstrap as css framework
Omkarsoft Bangalore
 
Bootstrap webtech presentation - new
Bootstrap   webtech presentation - newBootstrap   webtech presentation - new
Bootstrap webtech presentation - new
Webtech Learning
 
Bootstrap 3.1.1
Bootstrap 3.1.1Bootstrap 3.1.1
Bootstrap 3.1.1
Prasad Parab
 
Implementation of gui framework part2
Implementation of gui framework part2Implementation of gui framework part2
Implementation of gui framework part2
masahiroookubo
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
tutorialsruby
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
tutorialsruby
 
Twitter bootstrap (css, components and javascript)
Twitter bootstrap (css, components and javascript)Twitter bootstrap (css, components and javascript)
Twitter bootstrap (css, components and javascript)
NexThoughts Technologies
 
Bootstrap for Beginners
Bootstrap for BeginnersBootstrap for Beginners
Bootstrap for Beginners
D'arce Hess
 

Similar to An introduction to bootstrap (20)

Bootstrap [part 1]
Bootstrap [part 1]Bootstrap [part 1]
Bootstrap [part 1]
 
Twitter bootstrap training_session_ppt
Twitter bootstrap training_session_pptTwitter bootstrap training_session_ppt
Twitter bootstrap training_session_ppt
 
BOTSTRAP.ppt
BOTSTRAP.pptBOTSTRAP.ppt
BOTSTRAP.ppt
 
Bootstrap
Bootstrap Bootstrap
Bootstrap
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Lect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptxLect-4-Responsive-Web-06032024-082044am.pptx
Lect-4-Responsive-Web-06032024-082044am.pptx
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
Reboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in researchReboot-Typography.pptx reboot typography to help you in research
Reboot-Typography.pptx reboot typography to help you in research
 
Introduction to Responsive Web Development
Introduction to Responsive Web DevelopmentIntroduction to Responsive Web Development
Introduction to Responsive Web Development
 
Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3Create Responsive Website Design with Bootstrap 3
Create Responsive Website Design with Bootstrap 3
 
Battle of the Front-End Frameworks: Bootstrap vs. Foundation
Battle of the Front-End Frameworks: Bootstrap vs. FoundationBattle of the Front-End Frameworks: Bootstrap vs. Foundation
Battle of the Front-End Frameworks: Bootstrap vs. Foundation
 
Web technologies part-2
Web technologies part-2Web technologies part-2
Web technologies part-2
 
Know the reason behind choosing bootstrap as css framework
Know the reason behind choosing bootstrap as css frameworkKnow the reason behind choosing bootstrap as css framework
Know the reason behind choosing bootstrap as css framework
 
Bootstrap webtech presentation - new
Bootstrap   webtech presentation - newBootstrap   webtech presentation - new
Bootstrap webtech presentation - new
 
Bootstrap 3.1.1
Bootstrap 3.1.1Bootstrap 3.1.1
Bootstrap 3.1.1
 
Implementation of gui framework part2
Implementation of gui framework part2Implementation of gui framework part2
Implementation of gui framework part2
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
HowTo_CSS
HowTo_CSSHowTo_CSS
HowTo_CSS
 
Twitter bootstrap (css, components and javascript)
Twitter bootstrap (css, components and javascript)Twitter bootstrap (css, components and javascript)
Twitter bootstrap (css, components and javascript)
 
Bootstrap for Beginners
Bootstrap for BeginnersBootstrap for Beginners
Bootstrap for Beginners
 

More from Mind IT Systems

Business Intelligence Benefits for Your Organization
Business Intelligence Benefits for Your OrganizationBusiness Intelligence Benefits for Your Organization
Business Intelligence Benefits for Your Organization
Mind IT Systems
 
Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...
Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...
Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...
Mind IT Systems
 
Advantages of Remote IT Staff Augmentation for your Business
Advantages of Remote IT Staff Augmentation for your BusinessAdvantages of Remote IT Staff Augmentation for your Business
Advantages of Remote IT Staff Augmentation for your Business
Mind IT Systems
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
Mind IT Systems
 
Role of IT Staff Augmentation in Overcoming Software Development Challenges
Role of IT Staff Augmentation in Overcoming Software Development ChallengesRole of IT Staff Augmentation in Overcoming Software Development Challenges
Role of IT Staff Augmentation in Overcoming Software Development Challenges
Mind IT Systems
 
React Native - Why to choose it for your MVP Development
React Native - Why to choose it for your MVP DevelopmentReact Native - Why to choose it for your MVP Development
React Native - Why to choose it for your MVP Development
Mind IT Systems
 
Top Software Development Trends in 2024
Top Software Development Trends in  2024Top Software Development Trends in  2024
Top Software Development Trends in 2024
Mind IT Systems
 
Flutter the Future of Mobile App Development - 5 Crucial Reasons.pdf
Flutter the Future of Mobile App Development - 5 Crucial Reasons.pdfFlutter the Future of Mobile App Development - 5 Crucial Reasons.pdf
Flutter the Future of Mobile App Development - 5 Crucial Reasons.pdf
Mind IT Systems
 
Hybrid App Development Benefits and Challenges
Hybrid App Development Benefits and ChallengesHybrid App Development Benefits and Challenges
Hybrid App Development Benefits and Challenges
Mind IT Systems
 
Offshore Development Services - The Key to Cost Effective Solutions
Offshore Development Services - The Key to Cost Effective SolutionsOffshore Development Services - The Key to Cost Effective Solutions
Offshore Development Services - The Key to Cost Effective Solutions
Mind IT Systems
 
Node JS as Backend Technology - Reasons & Trends in 2024
Node JS as Backend Technology - Reasons & Trends in 2024Node JS as Backend Technology - Reasons & Trends in 2024
Node JS as Backend Technology - Reasons & Trends in 2024
Mind IT Systems
 
Top 10 Fintech Trends for 2024
Top 10 Fintech Trends for 2024Top 10 Fintech Trends for 2024
Top 10 Fintech Trends for 2024
Mind IT Systems
 
Best Mobile App Development Frameworks in 2024
Best Mobile App Development Frameworks in 2024Best Mobile App Development Frameworks in 2024
Best Mobile App Development Frameworks in 2024
Mind IT Systems
 
Why do Businesses need to Pay Attention to Frontend Development?
Why do Businesses need to Pay Attention to Frontend Development?Why do Businesses need to Pay Attention to Frontend Development?
Why do Businesses need to Pay Attention to Frontend Development?
Mind IT Systems
 
Tips on Hiring ​Full-Stack Developers for Your Business
Tips on Hiring ​Full-Stack Developers for Your BusinessTips on Hiring ​Full-Stack Developers for Your Business
Tips on Hiring ​Full-Stack Developers for Your Business
Mind IT Systems
 
Top 5 Reasons to Employ Flutter App Development for Your Next App
Top 5 Reasons to Employ Flutter App Development for Your Next AppTop 5 Reasons to Employ Flutter App Development for Your Next App
Top 5 Reasons to Employ Flutter App Development for Your Next App
Mind IT Systems
 
Hire Web Developer in India A Decisive Guide
Hire Web Developer in India A Decisive GuideHire Web Developer in India A Decisive Guide
Hire Web Developer in India A Decisive Guide
Mind IT Systems
 
How to Find and Hire the Best App Developers in India - Mind IT Systems
How to Find and Hire the Best App Developers in India - Mind IT SystemsHow to Find and Hire the Best App Developers in India - Mind IT Systems
How to Find and Hire the Best App Developers in India - Mind IT Systems
Mind IT Systems
 
Whether Flutter or Xamarin - Which is Better for 2023 - Mind It Systems
Whether Flutter or Xamarin - Which is Better for 2023 - Mind It SystemsWhether Flutter or Xamarin - Which is Better for 2023 - Mind It Systems
Whether Flutter or Xamarin - Which is Better for 2023 - Mind It Systems
Mind IT Systems
 
Why digital transformation strategy is essential for businesses?
Why digital transformation strategy is essential for businesses?Why digital transformation strategy is essential for businesses?
Why digital transformation strategy is essential for businesses?
Mind IT Systems
 

More from Mind IT Systems (20)

Business Intelligence Benefits for Your Organization
Business Intelligence Benefits for Your OrganizationBusiness Intelligence Benefits for Your Organization
Business Intelligence Benefits for Your Organization
 
Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...
Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...
Custom Healthcare Software for Managing Chronic Conditions and Remote Patient...
 
Advantages of Remote IT Staff Augmentation for your Business
Advantages of Remote IT Staff Augmentation for your BusinessAdvantages of Remote IT Staff Augmentation for your Business
Advantages of Remote IT Staff Augmentation for your Business
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Role of IT Staff Augmentation in Overcoming Software Development Challenges
Role of IT Staff Augmentation in Overcoming Software Development ChallengesRole of IT Staff Augmentation in Overcoming Software Development Challenges
Role of IT Staff Augmentation in Overcoming Software Development Challenges
 
React Native - Why to choose it for your MVP Development
React Native - Why to choose it for your MVP DevelopmentReact Native - Why to choose it for your MVP Development
React Native - Why to choose it for your MVP Development
 
Top Software Development Trends in 2024
Top Software Development Trends in  2024Top Software Development Trends in  2024
Top Software Development Trends in 2024
 
Flutter the Future of Mobile App Development - 5 Crucial Reasons.pdf
Flutter the Future of Mobile App Development - 5 Crucial Reasons.pdfFlutter the Future of Mobile App Development - 5 Crucial Reasons.pdf
Flutter the Future of Mobile App Development - 5 Crucial Reasons.pdf
 
Hybrid App Development Benefits and Challenges
Hybrid App Development Benefits and ChallengesHybrid App Development Benefits and Challenges
Hybrid App Development Benefits and Challenges
 
Offshore Development Services - The Key to Cost Effective Solutions
Offshore Development Services - The Key to Cost Effective SolutionsOffshore Development Services - The Key to Cost Effective Solutions
Offshore Development Services - The Key to Cost Effective Solutions
 
Node JS as Backend Technology - Reasons & Trends in 2024
Node JS as Backend Technology - Reasons & Trends in 2024Node JS as Backend Technology - Reasons & Trends in 2024
Node JS as Backend Technology - Reasons & Trends in 2024
 
Top 10 Fintech Trends for 2024
Top 10 Fintech Trends for 2024Top 10 Fintech Trends for 2024
Top 10 Fintech Trends for 2024
 
Best Mobile App Development Frameworks in 2024
Best Mobile App Development Frameworks in 2024Best Mobile App Development Frameworks in 2024
Best Mobile App Development Frameworks in 2024
 
Why do Businesses need to Pay Attention to Frontend Development?
Why do Businesses need to Pay Attention to Frontend Development?Why do Businesses need to Pay Attention to Frontend Development?
Why do Businesses need to Pay Attention to Frontend Development?
 
Tips on Hiring ​Full-Stack Developers for Your Business
Tips on Hiring ​Full-Stack Developers for Your BusinessTips on Hiring ​Full-Stack Developers for Your Business
Tips on Hiring ​Full-Stack Developers for Your Business
 
Top 5 Reasons to Employ Flutter App Development for Your Next App
Top 5 Reasons to Employ Flutter App Development for Your Next AppTop 5 Reasons to Employ Flutter App Development for Your Next App
Top 5 Reasons to Employ Flutter App Development for Your Next App
 
Hire Web Developer in India A Decisive Guide
Hire Web Developer in India A Decisive GuideHire Web Developer in India A Decisive Guide
Hire Web Developer in India A Decisive Guide
 
How to Find and Hire the Best App Developers in India - Mind IT Systems
How to Find and Hire the Best App Developers in India - Mind IT SystemsHow to Find and Hire the Best App Developers in India - Mind IT Systems
How to Find and Hire the Best App Developers in India - Mind IT Systems
 
Whether Flutter or Xamarin - Which is Better for 2023 - Mind It Systems
Whether Flutter or Xamarin - Which is Better for 2023 - Mind It SystemsWhether Flutter or Xamarin - Which is Better for 2023 - Mind It Systems
Whether Flutter or Xamarin - Which is Better for 2023 - Mind It Systems
 
Why digital transformation strategy is essential for businesses?
Why digital transformation strategy is essential for businesses?Why digital transformation strategy is essential for businesses?
Why digital transformation strategy is essential for businesses?
 

Recently uploaded

Folding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a seriesFolding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a series
Philip Schwarz
 
Introduction to Python and Basic Syntax.pptx
Introduction to Python and Basic Syntax.pptxIntroduction to Python and Basic Syntax.pptx
Introduction to Python and Basic Syntax.pptx
GevitaChinnaiah
 
Female Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service Available
Female Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service AvailableFemale Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service Available
Female Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service Available
isha sharman06
 
119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt
lavesingh522
 
Secure-by-Design Using Hardware and Software Protection for FDA Compliance
Secure-by-Design Using Hardware and Software Protection for FDA ComplianceSecure-by-Design Using Hardware and Software Protection for FDA Compliance
Secure-by-Design Using Hardware and Software Protection for FDA Compliance
ICS
 
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptxSAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
aneeshmanikantan2341
 
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
Shane Coughlan
 
Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...
Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...
Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...
simmi singh$A17
 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
michniczscribd
 
What’s new in VictoriaMetrics - Q2 2024 Update
What’s new in VictoriaMetrics - Q2 2024 UpdateWhat’s new in VictoriaMetrics - Q2 2024 Update
What’s new in VictoriaMetrics - Q2 2024 Update
VictoriaMetrics
 
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Ortus Solutions, Corp
 
Going AOT: Everything you need to know about GraalVM for Java applications
Going AOT: Everything you need to know about GraalVM for Java applicationsGoing AOT: Everything you need to know about GraalVM for Java applications
Going AOT: Everything you need to know about GraalVM for Java applications
Alina Yurenko
 
High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...
shoeb2926
 
Accelerate your Sitecore development with GenAI
Accelerate your Sitecore development with GenAIAccelerate your Sitecore development with GenAI
Accelerate your Sitecore development with GenAI
Ahmed Okour
 
Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...
Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...
Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...
Anita pandey
 
Ensuring Efficiency and Speed with Practical Solutions for Clinical Operations
Ensuring Efficiency and Speed with Practical Solutions for Clinical OperationsEnsuring Efficiency and Speed with Practical Solutions for Clinical Operations
Ensuring Efficiency and Speed with Practical Solutions for Clinical Operations
OnePlan Solutions
 
Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...
Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...
Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...
meenusingh4354543
 
Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...
ns9201415
 
🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...
🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...
🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...
tinakumariji156
 

Recently uploaded (20)

Folding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a seriesFolding Cheat Sheet #5 - fifth in a series
Folding Cheat Sheet #5 - fifth in a series
 
Introduction to Python and Basic Syntax.pptx
Introduction to Python and Basic Syntax.pptxIntroduction to Python and Basic Syntax.pptx
Introduction to Python and Basic Syntax.pptx
 
Female Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service Available
Female Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service AvailableFemale Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service Available
Female Bangalore Call Girls 👉 7023059433 👈 Vip Escorts Service Available
 
119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt119321250-History-of-Computer-Programming.ppt
119321250-History-of-Computer-Programming.ppt
 
Secure-by-Design Using Hardware and Software Protection for FDA Compliance
Secure-by-Design Using Hardware and Software Protection for FDA ComplianceSecure-by-Design Using Hardware and Software Protection for FDA Compliance
Secure-by-Design Using Hardware and Software Protection for FDA Compliance
 
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptxSAP ECC & S4 HANA PPT COMPARISON MM.pptx
SAP ECC & S4 HANA PPT COMPARISON MM.pptx
 
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
OpenChain Webinar - Open Source Due Diligence for M&A - 2024-06-17
 
Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...
Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...
Independent Call Girls In Kolkata ✔ 7014168258 ✔ Hi I Am Divya Vip Call Girl ...
 
Beginner's Guide to Observability@Devoxx PL 2024
Beginner's  Guide to Observability@Devoxx PL 2024Beginner's  Guide to Observability@Devoxx PL 2024
Beginner's Guide to Observability@Devoxx PL 2024
 
What’s new in VictoriaMetrics - Q2 2024 Update
What’s new in VictoriaMetrics - Q2 2024 UpdateWhat’s new in VictoriaMetrics - Q2 2024 Update
What’s new in VictoriaMetrics - Q2 2024 Update
 
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
Strengthening Web Development with CommandBox 6: Seamless Transition and Scal...
 
Going AOT: Everything you need to know about GraalVM for Java applications
Going AOT: Everything you need to know about GraalVM for Java applicationsGoing AOT: Everything you need to know about GraalVM for Java applications
Going AOT: Everything you need to know about GraalVM for Java applications
 
High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...
High-Class Call Girls In Chennai 📞7014168258 Available With Direct Cash Payme...
 
Accelerate your Sitecore development with GenAI
Accelerate your Sitecore development with GenAIAccelerate your Sitecore development with GenAI
Accelerate your Sitecore development with GenAI
 
Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...
Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...
Premium Call Girls In Ahmedabad 💯Call Us 🔝 7426014248 🔝Independent Ahmedabad ...
 
bgiolcb
bgiolcbbgiolcb
bgiolcb
 
Ensuring Efficiency and Speed with Practical Solutions for Clinical Operations
Ensuring Efficiency and Speed with Practical Solutions for Clinical OperationsEnsuring Efficiency and Speed with Practical Solutions for Clinical Operations
Ensuring Efficiency and Speed with Practical Solutions for Clinical Operations
 
Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...
Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...
Erotic Call Girls Bangalore🫱9079923931🫲 High Quality Call Girl Service Right ...
 
Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...
Hot Call Girls In Ahmedabad ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Servic...
 
🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...
🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...
🔥 Kolkata Call Girls  👉 9079923931 👫 High Profile Call Girls Whatsapp Number ...
 

An introduction to bootstrap

  • 2. Topics • Bootstrap Introduction • Scaffolding • CSS • Layout Component 2
  • 3. Bootstrap Introduction • Bootstrap was released in August 2011 by Twitter. • It is an open source product, developed by Mark Otto and Jacob Thornton. • It was developed to standardize the frontend toolsets of engineers across the company. • Most exciting feature of bootstrap is that it allows to build responsive web designs. • The websites like Toyota.com,Appsetter, Quicklinkr & many more are designed using bootstrap. 3
  • 4. Bootstrap Scaffolding • File Structure • Grid System • Layout • Responsive Design 4
  • 5. File Structure • File Structure of Bootstrap: – bootstrap/ – css/ » bootstrap.css » bootstrap.min.css – js/ » bootstrap.js » bootstrap.min.js – img/ » glyphicons-halflings.png » glyphicons-halflings-white.png – README.md 5
  • 6. • To use bootstrap we include the link to the CSS stylesheet and the JavaScript: <link href="css/bootstrap.min.css" rel="stylesheet"> <script src="js/bootstrap.min.js"></script> 6
  • 7. Grid System • Grid can be of two types: – Fixed Grid – Fluid Grid • The default (fixed) Bootstrap grid system utilizes 12 columns, making for a 940px-wide container without responsive features enabled. With the responsive CSS file added, the grid adapts to be 724px or 1170px wide, depending on your viewport. • An example of the 12 possible columns is in below given figure. 7
  • 8. • To create a simple layout, create a container with a <div> that has a class of .row and add the appropriate amount of .span* columns. Since we have a 12-column grid, we just need the amount of .span* columns to equal 12. 8
  • 9. <div class="row"> <div class="span8">...</div> <div class="span4">...</div> </div> • Nesting Columns: To nest your content with the default grid, inside of a .span*, simply add a new .row with enough .span* that it equals the number of spans of the parent container 9
  • 10. <div class="row"> <div class="span9"> Level 1 of column <div class="row"> <div class="span6">Level 2</div> <div class="span3">Level 2</div> </div> </div> </div> 10
  • 11. • Fluid Grid System: The fluid grid system uses percentages instead of pixels for column widths. It has the same responsive capabilities as our fixed grid system, ensuring proper proportions for key screen resolutions and devices. You can make any row “fluid” by changing .row to .row-fluid. • Nesting Fluid Grid: It is slightly different <div class="row-fluid"> <div class="span8"> <div class="row"> <div class="span6">...</div> <div class="span6">...</div> </div> </div> </div> 11
  • 12. Container Layouts • To add a fixed-width, centered layout to your page, simply wrap the content in <div class="container">...</div>. • If you would like to use a fluid layout but want to wrap everything in a container, use the following: <div class="container-fluid">...</div>. 12
  • 13. Responsive Design • Responsive design is a method for taking all of the existing content that is on the page and optimizing it for the device that is viewing it. • To target these different widths, Bootstrap uses CSS media queries to measure the width of the browser viewport and then, using conditionals, changes which parts of the stylesheets are loaded. Using the width of the browser viewport, Bootstrap can then optimize the content using a combination of ratios or widths, but it mostly relies on min-width and max-width properties. 13
  • 14. • To turn on the responsive features of Bootstrap, you need to add a <meta> tag to the <head> of your web page. If you haven’t downloaded the compiled source, you will also need to add the responsive CSS file. An example of required files looks like this: <!DOCTYPE html> <html> <head> <title>My amazing Bootstrap site!</title> <meta name="viewport" content="width=device-width, initial- scale=1.0"> <link href="/css/bootstrap.css" rel="stylesheet"> <link href="/css/bootstrap-responsive.css" rel="stylesheet"> </head> 14
  • 15. Bootstrap CSS • It provide styles for common HTML elements like typography, code, tables, forms, buttons & plus includes Glyphicons, icon set. • For example, it provide four classes to style a table: .table-striped, .table-bordered, .table-hover, and .table- condensed. 15
  • 16. Bootstrap Layout Component • Bootstrap provides a toolkit of flexible components that can be used in designing application interfaces, web features, and more. • Dropdown Menus: The following code creates a basic dropdown menu: <ul class="dropdown-menu" role="menu" aria- labelledby ="dropdownMenu"> <li><a tabindex="-1" href="#">Action</a></li> <li><a tabindex="-1" href="#">Another action</a></li> <li><a tabindex="-1" href="#">Something else here</a></li> <li class="divider"></li> <li><a tabindex="-1" href="#">Separated link</a></li> </ul> 16
  • 17. • Button Groups: class=‘btn-group’ • Navigation Elements : class=‘nav’ • Pagination: class=‘pagination’. 17
  翻译: