SlideShare ist ein Scribd-Unternehmen logo
1 von 116
Downloaden Sie, um offline zu lesen
Stop Reinventing the Wheel
Build Responsive Websites Using Bootstrap Framework
Gaurav Gupta
HighEdWeb Conference, October 5, 2015
#DPA3 @FrshBakedPixels
#DPA3



@FrshBakedPixels

about me
IT Analyst
Division of Learning Innovation and Student Success
Virginia Commonwealth University
#DPA3 @FrshBakedPixels
evolution of web design
Table Div + Float Grid Responsive

Web Design
float:none
float:left float: right
Table Div + Float Grid Responsive

Web Design
12 columns
4 columns
6 columns 6 columns
4 columns 4 columns
Table Div + Float Grid Responsive

Web Design
1
2 3
Table Div + Float Grid Responsive

Web Design
1
2
3
Table Div + Float Grid Responsive

Web Design
Media queries
Responsive grid
Responsive images
desktop mobile
Media queries
Responsive grid
Responsive images
responsive navigation
desktop
mobile
responsive forms
desktop
mobile
responsive media embed
desktop
mobile
#DPA3 @FrshBakedPixels
CSS and JavaScript framework
Originally developed by Twitter
Made open source in October 2011
Currently Version 3.3.5
#DPA3 @FrshBakedPixels
why Bootstrap
#DPA3 @FrshBakedPixels
wide browser and

device support
re-usable components
standardized code
open-source and

customizable
thoroughly tested 

and debugged
#DPA3 @FrshBakedPixels
Source: http://trends.builtwith.com/docinfo/Twitter-Bootstrap
#DPA3 @FrshBakedPixels
Source: http://us.pg.com
Source: http://statefarm.com
Source: http://centralusa.salvationarmy.org/
Source: http://www.washington.edu
Source: http://www4.uwm.edu/
Source: http://arkansas.gov
http://arkansas.gov/
Source: http://www.nps.gov//
Repeal Bootstrap
what’s included in Bootstrap
#DPA3 @FrshBakedPixels
Responsive grid system 12 column grid
4 different screen sizes
nestable
#DPA3 @FrshBakedPixels
Responsive grid system
Pre-styled elements
Navigation bar
Drop-down menus
Forms
Buttons
Tables
Labels and Badges
#DPA3 @FrshBakedPixels
pre-styled buttons
<a class="btn btn-default">Default button</a>
<a class="btn btn-primary btn-lg">Large button</a>
<a class="btn btn-primary">Primary button</a>
<a href="#">Button</a>
pre-styled form elements
→
→
→
Responsive grid system
Pre-styled elements
Icon font Glyphicons
180 icons
#DPA3 @FrshBakedPixels
icon font
<span class="glyphicon glyphicon-search"></span>
<span class="glyphicon glyphicon-envelope"></span>
<span class="glyphicon glyphicon-home"></span>
<span class="glyphicon glyphicon-pencil"></span>
<span class="glyphicon glyphicon-refresh"></span>
<span class="glyphicon glyphicon-shopping-cart"></span>
<span class="glyphicon glyphicon-cog"></span>
#DPA3 @FrshBakedPixels
icon font
16px
48px
96px
#DPA3 @FrshBakedPixels
what’s included
Responsive grid system
Pre-styled elements
Icon font
JavaScript plugins
Modal
Drop-down
Tab
Collapse
Tooltip and Popover
Carousel
Scrollspy
Affix
#DPA3 @FrshBakedPixels
http://getbootstrap.com/
you can choose and customize
#DPA3 @FrshBakedPixels
Bootstrap
folder
structure
you will also need
jQuery
For IE8 and below
respond.js (media queries)
html5shiv.js (HTML5 support)
#DPA3 @FrshBakedPixels
let’s build something
#DPA3 @FrshBakedPixels
http://tiny.cc/heweb1
Start with HTML5 document
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<header></header>
<nav></nav>
<section></section>
<section></section>
<section></section>
<section></section>
<footer></footer>
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
</head>
<body>
<header></header>
<nav></nav>
<section></section>
<section></section>
<section></section>
<section></section>
<footer></footer>
</body>
</html>
<link rel="stylesheet" href="css/bootstrap.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/myCustomStylesheet.css">
responsive grid 101
#DPA3 @FrshBakedPixels
Breakpoint
Breakpoint
Breakpoint
Breakpoint
Breakpoint
Breakpoint
Bootstrap has 3 breakpoints
992px 1200px768px
extra-small small medium large
.col-xs- .col-lg-.col-md-.col-sm-
<div class="col-md-3">col-md-3</div>
<div class="col-md-9">col-md-9</div>
screen size prefixes
relative width of columns
numbers must add up to 12
.col-­‐md-­‐3 .col-­‐md-­‐9
<div class="row">
</div>
<section class="row">
<div class="col-md-3">
</div>
<div class="col-md-9">
</div>
</section>
“about me” section
<h2>about me</h2>
<p>I work as an …</p>
<p>My area of interest …</p>
small screen
medium screen
“about me” section
really large screen
“about me” section
<div class="row">
<div class="col-md-8">col-md-8</div>
<div class="col-md-4">col-md-4</div>
</div>
sets maximum width
center aligns the container
really large screen
<div class="container">
</div>
header
<header class="container">
<div class="row">
<div class="col-sm-5">
<img src="images/gaurav.png">
</div>
<div class="col-sm-7">
<h1>Gaurav Gupta</h1>
<p>web designer, developer</p>
</div>
</div>
</header>
change column order
<header class="container">
<div class="row">
</div>
</header>
<div class="col-sm-5 col-sm-pull-7 ">
<img src="images/gaurav.png">
</div>
<div class="col-sm-7 col-sm-push-5 ">
<h1>Gaurav Gupta</h1>
<p>web designer, developer</p>
</div>
change column order
<header class="container">
<div class="row">
</div>
</header>
<div class="col-sm-5 col-sm-pull-7 ">
<img src="images/gaurav.png">
</div>
<div class="col-sm-7 col-sm-push-5 ">
<h1>Gaurav Gupta</h1>
<p>web designer, developer</p>
</div>
mix and match grid columns
column	
  1 column	
  2 column	
  3
<div class="row">
<div class="col-md-6 col-sm-12">column 1</div>
<div class="col-md-4 col-sm-6" >column 2</div>
<div class="col-md-2 col-sm-6" >column 3</div>
</div>
column	
  1
column	
  2 column	
  3
»
medium screens
small screens
responsive images
<img src="... " class="img-responsive">
responsive tables
<div class="table-responsive">
<table class="table">
...
</table>
</div>
responsive navigation
#DPA3 @FrshBakedPixels
start with basic markup
<nav>
<ul>
<li><a href="#home">home</a></li>
<li><a href="#about">about me</a></li>
<li><a href="#projects">recent projects</a></li>
<li><a href="#presentations">presentations</a></li>
<li><a href="#contact">contact me</a></li>
</ul>
</nav>
add classes
<nav class="navbar navbar-default">
<ul class="nav nav-justified">
<li><a href="#home">home</a></li>
<li><a href="#about">about me</a></li>
<li><a href="#projects">recent projects</a></li>
<li><a href="#presentations">presentations</a></li>
<li><a href="#contact">contact me</a></li>
</ul>
</nav>
small – large screens
extra-small screen
collapse navigation on extra-small screens
<nav class="navbar navbar-default">
<ul class="nav nav-justified collapse navbar-collapse">
...
</ul>
</nav>
add toggle button
<nav>
<div class="navbar-header visible-xs">
<button class="navbar-toggle" data-toggle="collapse"

data-target=".my-navbar">
<span class="glyphicon glyphicon-align-justify"></span>
</button>
</div>
<ul class="nav nav-justified collapse navbar-collapse my-navbar" >
...
</ul>
</nav>
add header text
<div class="navbar-header visible-xs">
<button class="navbar-toggle" data-toggle="collapse" data-target=".my-
navbar">
<span class="glyphicon glyphicon-align-justify"></span>
<h3 class=" text-center">Gaurav Gupta</h3>
</button>
</div>
small – large screens
extra-small screen
adding your own styles
#DPA3 @FrshBakedPixels
/* myCustomStylesheet.css */
.navbar-default {
background-color: #74716a;
border-color: #FFF;
}
/* bootstrap.css */
.navbar-default {
background-color: #f8f8f8;
border-color: #e7e7e7;
}
use web developer tools
»
JavaScript components
#DPA3 @FrshBakedPixels
Affix: fix position of elements on page
$('nav').affix({offset: {top: ($('nav').offset().top), bottom: 200} });
nav.affix { top: 0; width: 100%;}
»
Scrollspy: indicate current location
<body data-spy="scroll" data-target=".nav">
nav .nav > li.active > a {
background-color: #514F4A;
}
»
tabs
tabs
<ul class="nav nav-tabs">
<li><a href="#contactme" data-toggle="tab">Contact me</a></li>
<li><a href="#twitter" data-toggle="tab">Twitter</a></li>
<li><a href="#services" data-toggle="tab">Services</a></li>
</ul>
tabs
<div class="tab-content">
<div class="tab-pane" id="contactme">...</div>
<div class="tab-pane" id="twitter">...</div>
<div class="tab-pane" id="services">...</div>
</div>
tooltip
<input type="text" data-toggle="tooltip" title="full name">
$('[data-toggle="tooltip"]').tooltip();
Bootstrap + 

146 lines of CSS + 

10 lines of JS
#DPA3 @FrshBakedPixels
more examples on Bootstrap website
retrofitting an existing
website
#DPA3 @FrshBakedPixels
Apple page built with Bootstrap
http://tiny.cc/heweb2
8-10 hours
other ways to use Bootstrap
#DPA3 @FrshBakedPixels
prototyping
Wordpress plugins
third party add-ons
Fontello
»
Bootsnipp: button builder
http://bootsnipp.com/buttons »
pros and cons of Bootstrap
#DPA3 @FrshBakedPixels
The easy way of building websites,
not the ideal way
Overstyled components
Unused CSS
version 4.0
#DPA3 @FrshBakedPixels
Dropped IE 8 support
Use of Em and Rem instead of pixels
Added one more breakpoint
Flexbox layout support
other frameworks
#DPA3 @FrshBakedPixels
Source: http://usablica.github.io/front-end-frameworks/compare.html
my selection criteria
responsive
browser support
features
popularity
other resources
50 Must-have Bootstrap plugins
http://tutorialzine.com/2013/07/50-must-have-plugins-for-extending-twitter-bootstrap/
Bootply
http://www.bootply.com/
Bootstrap CDN
http://www.bootstrapcdn.com/
More resources
http://bootsnipp.com/resources
Inspect structure and style with Chrome Developer Tools
https://developers.google.com/web/tools/iterate/inspect-styles/basics
questions?
#DPA3



@frshbakedpixels

Weitere ähnliche Inhalte

Was ist angesagt?

Web Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSWeb Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSBootstrap Creative
 
Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016Cristina Chumillas
 
Bootstrap Introduction
Bootstrap IntroductionBootstrap Introduction
Bootstrap IntroductionAndrea Tarr
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to BootstrapRon Reiter
 
HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?Chris Mills
 
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...Cedric Spillebeen
 
Building a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBuilding a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBas Brands
 
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by StepBootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by StepBootstrap Creative
 
Intro To Twitter Bootstrap
Intro To Twitter BootstrapIntro To Twitter Bootstrap
Intro To Twitter BootstrapAhmed Haque
 
Introduction to Bootstrap: Design for Developers
Introduction to Bootstrap: Design for DevelopersIntroduction to Bootstrap: Design for Developers
Introduction to Bootstrap: Design for DevelopersMelvin John
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSSTodd Anglin
 
Responsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksResponsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksGautam Krishnan
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignDebra Shapiro
 
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. FoundationRachel Cherry
 
Introduction to Twitter's Bootstrap 2
Introduction to Twitter's Bootstrap 2Introduction to Twitter's Bootstrap 2
Introduction to Twitter's Bootstrap 2Julien Renaux
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewDiacode
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standardsgleddy
 

Was ist angesagt? (20)

Web Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSWeb Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JS
 
Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016Improving the Responsive Web Design Process in 2016
Improving the Responsive Web Design Process in 2016
 
Bootstrap Introduction
Bootstrap IntroductionBootstrap Introduction
Bootstrap Introduction
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Introduction to Bootstrap
Introduction to BootstrapIntroduction to Bootstrap
Introduction to Bootstrap
 
HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?HTML5 and CSS3: does now really mean now?
HTML5 and CSS3: does now really mean now?
 
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
Bootstrap 3 - Sleek, intuitive, and powerful mobile first front-end framework...
 
Building a Moodle theme with bootstrap
Building a Moodle theme with bootstrapBuilding a Moodle theme with bootstrap
Building a Moodle theme with bootstrap
 
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by StepBootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
Bootstrap 4 Tutorial PDF for Beginners - Learn Step by Step
 
Intro To Twitter Bootstrap
Intro To Twitter BootstrapIntro To Twitter Bootstrap
Intro To Twitter Bootstrap
 
Introduction to Bootstrap: Design for Developers
Introduction to Bootstrap: Design for DevelopersIntroduction to Bootstrap: Design for Developers
Introduction to Bootstrap: Design for Developers
 
Doing More with LESS for CSS
Doing More with LESS for CSSDoing More with LESS for CSS
Doing More with LESS for CSS
 
Bootstrap ppt
Bootstrap pptBootstrap ppt
Bootstrap ppt
 
Responsive Web Design: Tips and Tricks
Responsive Web Design: Tips and TricksResponsive Web Design: Tips and Tricks
Responsive Web Design: Tips and Tricks
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
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
 
Introduction to Twitter's Bootstrap 2
Introduction to Twitter's Bootstrap 2Introduction to Twitter's Bootstrap 2
Introduction to Twitter's Bootstrap 2
 
Bootstrap 3.1.1
Bootstrap 3.1.1Bootstrap 3.1.1
Bootstrap 3.1.1
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
 

Andere mochten auch

As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...
As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...
As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...Tiffany Beker
 
HigherEd Web conference presentation
HigherEd Web conference presentationHigherEd Web conference presentation
HigherEd Web conference presentationMatt Hames
 
I Believe I Can See the Future
I Believe I Can See the FutureI Believe I Can See the Future
I Believe I Can See the FutureJoshua Dodson
 
Metropolis and Gotham: Two Approaches to Enterprise Site Development
Metropolis and Gotham: Two Approaches to Enterprise Site DevelopmentMetropolis and Gotham: Two Approaches to Enterprise Site Development
Metropolis and Gotham: Two Approaches to Enterprise Site DevelopmentJeffrey Stevens
 

Andere mochten auch (6)

JavaScript
JavaScriptJavaScript
JavaScript
 
As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...
As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...
As Easy As Herding Squirrels: Managing Social Media on Your Campus #heweb15 #...
 
HigherEd Web conference presentation
HigherEd Web conference presentationHigherEd Web conference presentation
HigherEd Web conference presentation
 
I Believe I Can See the Future
I Believe I Can See the FutureI Believe I Can See the Future
I Believe I Can See the Future
 
Metropolis and Gotham: Two Approaches to Enterprise Site Development
Metropolis and Gotham: Two Approaches to Enterprise Site DevelopmentMetropolis and Gotham: Two Approaches to Enterprise Site Development
Metropolis and Gotham: Two Approaches to Enterprise Site Development
 
Check yo self(ie)
Check yo self(ie)Check yo self(ie)
Check yo self(ie)
 

Ähnlich wie Stop reinventing the wheel: Build Responsive Websites Using Bootstrap

Bootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF ReferenceBootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF ReferenceBootstrap Creative
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by MukeshMukesh Kumar
 
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...Roni Banerjee
 
HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010alanburke
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is nowGonzalo Cordero
 
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 3Wahyu Putra
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4imdurgesh
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Terry Ryan
 
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!Hans Kuijpers
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucksTim Wright
 
HTML5+CSS3 (入門編)
HTML5+CSS3 (入門編)HTML5+CSS3 (入門編)
HTML5+CSS3 (入門編)博史 高木
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2James Pearce
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Joao Lucas Santana
 
Twitter bootstrap
Twitter bootstrapTwitter bootstrap
Twitter bootstrapdennisdc
 
HTML5 - An Introduction
HTML5 - An IntroductionHTML5 - An Introduction
HTML5 - An IntroductionTimmy Kokke
 
Front end full stack development module 1pptx
Front end full stack development module 1pptxFront end full stack development module 1pptx
Front end full stack development module 1pptxMaruthiPrasad96
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development FrameworkCindy Royal
 

Ähnlich wie Stop reinventing the wheel: Build Responsive Websites Using Bootstrap (20)

Bootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF ReferenceBootstrap 3 Cheat Sheet PDF Reference
Bootstrap 3 Cheat Sheet PDF Reference
 
Bootstrap PPT by Mukesh
Bootstrap PPT by MukeshBootstrap PPT by Mukesh
Bootstrap PPT by Mukesh
 
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
“Good design is obvious. Great design is transparent.” — How we use Bootstrap...
 
HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010HTML 5 Drupalcamp Ireland Dublin 2010
HTML 5 Drupalcamp Ireland Dublin 2010
 
2022 HTML5: The future is now
2022 HTML5: The future is now2022 HTML5: The future is now
2022 HTML5: The future is now
 
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
 
Intro to Bootstrap
Intro to BootstrapIntro to Bootstrap
Intro to Bootstrap
 
ViA Bootstrap 4
ViA Bootstrap 4ViA Bootstrap 4
ViA Bootstrap 4
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!Bootstrap 3 in Joomla!
Bootstrap 3 in Joomla!
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
HTML5+CSS3 (入門編)
HTML5+CSS3 (入門編)HTML5+CSS3 (入門編)
HTML5+CSS3 (入門編)
 
HTML5 & CSS3 Flag
HTML5 & CSS3 FlagHTML5 & CSS3 Flag
HTML5 & CSS3 Flag
 
HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2HTML5 and the dawn of rich mobile web applications pt 2
HTML5 and the dawn of rich mobile web applications pt 2
 
Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)Desenvolvimento web com Ruby on Rails (parte 2)
Desenvolvimento web com Ruby on Rails (parte 2)
 
Twitter bootstrap
Twitter bootstrapTwitter bootstrap
Twitter bootstrap
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
HTML5 - An Introduction
HTML5 - An IntroductionHTML5 - An Introduction
HTML5 - An Introduction
 
Front end full stack development module 1pptx
Front end full stack development module 1pptxFront end full stack development module 1pptx
Front end full stack development module 1pptx
 
Bootstrap - Web Development Framework
Bootstrap - Web Development FrameworkBootstrap - Web Development Framework
Bootstrap - Web Development Framework
 

Kürzlich hochgeladen

Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceanilsa9823
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Douxkojalkojal131
 
Government polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcdGovernment polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcdshivubhavv
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Servicearoranaina404
 
Tapestry Clothing Brands: Collapsing the Funnel
Tapestry Clothing Brands: Collapsing the FunnelTapestry Clothing Brands: Collapsing the Funnel
Tapestry Clothing Brands: Collapsing the Funneljen_giacalone
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneLukeKholes
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girlsmodelanjalisharma4
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxTusharBahuguna2
 
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...Pooja Nehwal
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Delhi Call girls
 
VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...Call Girls in Nagpur High Profile
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptxVanshNarang19
 

Kürzlich hochgeladen (20)

Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun serviceCALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
CALL ON ➥8923113531 🔝Call Girls Aminabad Lucknow best Night Fun service
 
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai DouxDubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
Dubai Call Girls Pro Domain O525547819 Call Girls Dubai Doux
 
Government polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcdGovernment polytechnic college-1.pptxabcd
Government polytechnic college-1.pptxabcd
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
 
Tapestry Clothing Brands: Collapsing the Funnel
Tapestry Clothing Brands: Collapsing the FunnelTapestry Clothing Brands: Collapsing the Funnel
Tapestry Clothing Brands: Collapsing the Funnel
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call GirlsCBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
CBD Belapur Individual Call Girls In 08976425520 Panvel Only Genuine Call Girls
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
 
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...Kurla Call Girls Pooja Nehwal📞 9892124323 ✅  Vashi Call Service Available Nea...
Kurla Call Girls Pooja Nehwal📞 9892124323 ✅ Vashi Call Service Available Nea...
 
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
young call girls in Pandav nagar 🔝 9953056974 🔝 Delhi escort Service
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
 
VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...
VVIP Pune Call Girls Dange Chowk (8250192130) Pune Escorts Nearby with Comple...
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 
Fashion trends before and after covid.pptx
Fashion trends before and after covid.pptxFashion trends before and after covid.pptx
Fashion trends before and after covid.pptx
 

Stop reinventing the wheel: Build Responsive Websites Using Bootstrap