SlideShare a Scribd company logo
1 of 76
Responsive Web Design
(RWD)
by Mario Hernandez
Web: http://DesignsDrive.com
Email: designsdrive@gmail.com
Twitter: @DesignsDrive
Slides available at: http://slideshare.net/marequi
MARIO HERNANDEZ
Front-End Developer
Agenda
Session One:
SEO
Best practices, How does it relate to RWD
HTML
Introduction to HTML5 and CSS3
Progressive Enhancement and Graceful Degradation
CanIUse.com
Fonts
Pixels vs. EMs
Problems with EMs
Converting Pixels to EMs
Agenda
Session One:
Grid Systems
What are grids and how they apply to web design
Fixed vs Fluid vs. Responsive grids
Manipulating grids in web design (rows, columns, offsets,
source order, etc)
Media Queries
What are they?
What role do they play in responsive design?
Working with Breakpoints
Agenda
Session One:
Responsive Web Design or RWD
mariohernandez.github.io/responsive
Our Project
SEO
Search Engine Optimization
What search engines are looking for
What search engines are looking for
Content
What search engines are looking for
Content
Performance
What search engines are looking for
Content
Performance
Authority
What search engines are looking for
Content
Performance
Authority
User Experience
Source: http://searchenginewatch.com/article/2259693/SEO-Basics-8-Essentials-When-Optimizing-Your-Site
What search engines are NOT looking for
What search engines are NOT looking for
Keyword Stuffing
What search engines are NOT looking for
Keyword Stuffing
Purchased Links
What search engines are NOT looking for
Keyword Stuffing
Purchased Links
Poor User Experience
Be consistent with Domain Names
HTML5
Document Object Model (DOM)
IT’S NOT ONE BIG THING
How can I start using HTML5 if browsers don’t support it?
IT’S NOT ONE BIG THING
How can I start using HTML5 if browsers don’t support it?
You can’t detect HTML5
support but you can detect
support for individual features
(video, canvas or geolocation)
You don’t need to throw anything away
If your web application worked
yesterday in HTML 4, it will still
work today in HTML5. Period.
HTML5 allows you to improve your
website
IT’S EASY TO GET STARTED
GRACEFUL DEGRADATION
Graceful Degradation is a widely used
term which ideology is basically using
the latest technologies first, and then fix
anything that needs fixing for older
browsers.
PROGRESSIVE ENHANCEMENT
Progressive Enhancement refers to
the habit of building first for the less
capable, outdated browser and then
enhance for the latest technologies.
DOM
The Document Object Model (DOM) is a cross-
platform and language-independent convention
for representing and interacting with objects in
HTML, XHTML and XML documents.
DOM
DOCTYPE
A Document Type Declaration, or doctype for
short, has traditionally been used to specify
which particular flavor of markup a document is
written in.
Source: Book: HTML5 For Web Designers by Jeremy Keith
DOCTYPE
The doctype for HTML 4.01 looks like this (line
wraps marked »):
<!DOCTYPE HTML PUBLIC »
"-//W3C//DTD HTML 4.01//EN" »
"http://www.w3.org/TR/html4/strict.dtd">
Source: Book: HTML5 For Web Designers by Jeremy Keith
DOCTYPE
Here’s the doctype for XHTML 1.0:
<!DOCTYPE html PUBLIC »
"-//W3C//DTD XHTML 1.0 Strict //EN" »
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-
strict.dtd">
Source: Book: HTML5 For Web Designers by Jeremy Keith
DOCTYPE
HTML5:
<!DOCTYPE html>
Source: Book: HTML5 For Web Designers by Jeremy Keith
What is RWD?
Responsive Web Design is the approach to
design that allows websites to adapt to ideally fit
with screens of different shapes and sizes to
provide an optimal viewing experience.
Source: 3seven9.com
http://www.alistapart.com/articles/responsive-web-design/
http://www.abookapart.com/products/responsive-web-design
Elements of RWD
● Fluid Grid
Elements of RWD
● Fluid Grid
● Resizable Images (media)
Elements of RWD
● Fluid Grid
● Resizable Images (media)
● Media Queries
Elements of RWD
● Fluid Grid
● Resizable Images (media)
● Media Queries
+ a lot more stuff you
need to deal with
Fonts
Fonts - PXs
Fixed size
Fonts - PXs
Fixed size
Not resizable
Fonts - PXs
Fixed size
Not resizable
Not relative
Fonts - EMs
Fonts - EMs
Base font size is based on M
Fonts - EMs
Base font size is based on M
1em = Browser default body font size = 16px
1em = 100% the default body font size
Fonts - EMs
Base font size is based on M
1em = Browser default body font size = 16px
1em = 100% the default body font size
2em = 32px
Fonts - EMs
Base font size is based on M
1em = Browser default body font size = 16px
1em = 100% the default body font size
2em = 32px
EMs can be used for anything: width, height,
margin, padding, etc.
Fonts - EMs
Problems with EMs
Fonts - EMs
Problems with EMs
The cascade/compounding problem, em's are
relative to font size of parent
Fonts - EMs
Problems with EMs
The cascade/compounding problem, em's are
relative to font size of parent
li {font-size: 1.5em;} = 24px;
A list in a list is not 24px it's a 32px
Fonts - REMs
REMs like EMs, but based on root HTML
element size
Fonts - REMs
REMs like EMs, but based on root HTML
element size
Supported by all modern browsers
CodePen Demo
Fonts - REMs
REMs like EMs, but based on root HTML
element size
Supported by all modern browsers
Need to specify fallback for IE 8 and below
h1{font-size: 16px;font-size: 1rem;}
http://caniuse.com/#search=rem
Grid Systems
Skeleton Neat
csswizardry-grids
Foundatio
Singularity
GS
Sussy
Profound Grid
Responsive Grid System
Why Grids?
How do Grids work?
● Grid systems are built using rows & columns
● A fluid grid uses percentages instead of pixels
Media Queries
Media Queries
Media Queries is a CSS3 module allowing to
adapt the rendering of web pages based on
conditions such as screen resolution. It was first
drafted in 2001 by the W3C and became a
recommended standard in June 2012. It is a
cornerstone technology to RWD.
Devices
Common Breakpoints
Label Layout Width
Smartphones 480px and below
Portrait Tablets 480px to 768px
Landscape Tablets 768px to 940px
Desktops 940px and up
Large Screen 1210px and up
Resizable Images
img {
max-width: 100%;
height: auto;
}
Resizable Images
img, embed,
object, video, iframe {
max-width: 100%;
height: auto;
}
Viewport meta tag
<meta name="viewport" content="width=device-width" />
What do you do when you
lose 80% of your canvas?
http://www.abookapart.com/products/mobile-first
Building a Responsive Website
Planning
● Reset or normalize?
● Viewport meta tag
● Browser and device support
● Navigation
● Resizable Images/Media
● CSS3
Layout
● Sketching and/or Wireframing
● Content decisions
● Source Ordering
Navigation
● The concept
● Options
● Issues to consider
● Fixes and Hacks
Testing
● Browser test
● Simulator test
● Device test
Addressing Issues
● Internet Explorer and HTML5 elements
● Internet Explorer and Media Queries
● Proactively implementing fallbacks
What’s next?
● Versioning control
● Putting your site up on github
● Accessing your website on the web
● Additional resources (review relevant
resources and information)
Front-End Frameworks
Comparing Frameworks
● Bootstrap
● Foundation
Helpful Resources
● Font Size with REMs: http://snook.ca/archives/html_and_css/font-
size-with-rem
● Media Query Bookmarklet: http://goo.gl/RToKTC
● What's my browser size: http://whatsmybrowsersize.com
● Responsive Navigation: http://responsivenavigation.net/
● Media Queries for iOS devices: http://stephen.io/mediaqueries
● 10 Basic Tips for RWD: http://www.splio.com/responsive
The Ultimate RWD Beginners Resource List:
http://www.targetlocal.co.uk/responsive-web-design-resources/
Web: http://DesignsDrive.com
Email: designsdrive@gmail.com
Twitter: @DesignsDrive
Slides available at: http://slideshare.net/marequi
MARIO HERNANDEZ
Front-End Developer

More Related Content

What's hot

Twitter Bootstrap Presentation
Twitter Bootstrap PresentationTwitter Bootstrap Presentation
Twitter Bootstrap PresentationDuy Do Phan
 
The Future Of CSS
The Future Of CSSThe Future Of CSS
The Future Of CSSAndy Budd
 
Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3Kannika Kong
 
[Worskhop Summits] CSS3 Workshop
[Worskhop Summits] CSS3 Workshop[Worskhop Summits] CSS3 Workshop
[Worskhop Summits] CSS3 WorkshopChristopher Schmitt
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressJesse James Arnold
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply ResponsiveDenise Jacobs
 
October 2014 - USG Rock Eagle - Drupal 101
October 2014 - USG Rock Eagle - Drupal 101October 2014 - USG Rock Eagle - Drupal 101
October 2014 - USG Rock Eagle - Drupal 101Eric Sembrat
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondDenise Jacobs
 
Object oriented css graeme blackwood
Object oriented css graeme blackwoodObject oriented css graeme blackwood
Object oriented css graeme blackwooddrupalconf
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSTJ Stalcup
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3Doris Chen
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)Thinkful
 
Responsive Web Design (April 18th, Los Angeles)
Responsive Web Design (April 18th, Los Angeles)Responsive Web Design (April 18th, Los Angeles)
Responsive Web Design (April 18th, Los Angeles)Thinkful
 
Colors In CSS3
Colors In CSS3Colors In CSS3
Colors In CSS3Lea Verou
 
9 Months Web Development Diploma Course in North Delhi
9 Months Web Development Diploma Course in North Delhi9 Months Web Development Diploma Course in North Delhi
9 Months Web Development Diploma Course in North DelhiJessica Smith
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksAndolasoft Inc
 

What's hot (20)

Twitter Bootstrap Presentation
Twitter Bootstrap PresentationTwitter Bootstrap Presentation
Twitter Bootstrap Presentation
 
The Future Of CSS
The Future Of CSSThe Future Of CSS
The Future Of CSS
 
Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3Responsive Web Design with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3
 
[Worskhop Summits] CSS3 Workshop
[Worskhop Summits] CSS3 Workshop[Worskhop Summits] CSS3 Workshop
[Worskhop Summits] CSS3 Workshop
 
Intro to CSS3
Intro to CSS3Intro to CSS3
Intro to CSS3
 
Css
CssCss
Css
 
Design Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPressDesign Systems, Pattern Libraries & WordPress
Design Systems, Pattern Libraries & WordPress
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply Responsive
 
October 2014 - USG Rock Eagle - Drupal 101
October 2014 - USG Rock Eagle - Drupal 101October 2014 - USG Rock Eagle - Drupal 101
October 2014 - USG Rock Eagle - Drupal 101
 
CSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to RespondCSS3: Ripe and Ready to Respond
CSS3: Ripe and Ready to Respond
 
Object oriented css graeme blackwood
Object oriented css graeme blackwoodObject oriented css graeme blackwood
Object oriented css graeme blackwood
 
Thinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSSThinkful - Frontend Crash Course - Intro to HTML/CSS
Thinkful - Frontend Crash Course - Intro to HTML/CSS
 
Fundamental CSS3
Fundamental CSS3Fundamental CSS3
Fundamental CSS3
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Html:css crash course (4:5)
Html:css crash course (4:5)Html:css crash course (4:5)
Html:css crash course (4:5)
 
A Custom Drupal Theme in 40 Minutes
A Custom Drupal Theme in 40 MinutesA Custom Drupal Theme in 40 Minutes
A Custom Drupal Theme in 40 Minutes
 
Responsive Web Design (April 18th, Los Angeles)
Responsive Web Design (April 18th, Los Angeles)Responsive Web Design (April 18th, Los Angeles)
Responsive Web Design (April 18th, Los Angeles)
 
Colors In CSS3
Colors In CSS3Colors In CSS3
Colors In CSS3
 
9 Months Web Development Diploma Course in North Delhi
9 Months Web Development Diploma Course in North Delhi9 Months Web Development Diploma Course in North Delhi
9 Months Web Development Diploma Course in North Delhi
 
Organize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS TricksOrganize Your Website With Advanced CSS Tricks
Organize Your Website With Advanced CSS Tricks
 

Viewers also liked

Learning Online - EMS Introduction to Participants
Learning Online - EMS Introduction to ParticipantsLearning Online - EMS Introduction to Participants
Learning Online - EMS Introduction to ParticipantsGreg Thweatt
 
20110804 ems intro_english
20110804 ems intro_english20110804 ems intro_english
20110804 ems intro_englishYohei Takahashi
 
Trends in online emergency responder education
Trends in online emergency responder educationTrends in online emergency responder education
Trends in online emergency responder educationGreg Friese
 
California Ambulance Association 2010 Annual Conference
California Ambulance Association 2010 Annual ConferenceCalifornia Ambulance Association 2010 Annual Conference
California Ambulance Association 2010 Annual ConferenceEMS Compass Initiative
 
India electronics manufacturing services (EMS) and contract manufacturing
India electronics manufacturing services (EMS) and contract manufacturingIndia electronics manufacturing services (EMS) and contract manufacturing
India electronics manufacturing services (EMS) and contract manufacturingEvelyn Wyatt
 
O BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDER
O BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDERO BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDER
O BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDERFernando Rizzato
 
4 5walls-johnson-goodman16
4 5walls-johnson-goodman164 5walls-johnson-goodman16
4 5walls-johnson-goodman16afacct
 
E Bridge Ems Telemedicine Overview
E Bridge Ems Telemedicine OverviewE Bridge Ems Telemedicine Overview
E Bridge Ems Telemedicine OverviewBrian Edwards
 
Trends in Online Education
Trends in Online EducationTrends in Online Education
Trends in Online EducationGreg Friese
 
[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...
[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...
[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...Zpryme Research & Consulting, LLC
 
EMS CPAP Training
EMS CPAP TrainingEMS CPAP Training
EMS CPAP TrainingRobert Cole
 
Crew Resource Management For Ems Finished
Crew Resource Management For Ems FinishedCrew Resource Management For Ems Finished
Crew Resource Management For Ems FinishedJohn Halbrook
 
Presentación de la Reforma Integral de la Educación Media Superior
Presentación de la Reforma Integral de la Educación Media SuperiorPresentación de la Reforma Integral de la Educación Media Superior
Presentación de la Reforma Integral de la Educación Media SuperiorDGETI Zacatecas
 
Daejin catalogue k 2011 for web
Daejin catalogue k 2011 for webDaejin catalogue k 2011 for web
Daejin catalogue k 2011 for webBrian Nam
 
Ems obligatoriedad
Ems obligatoriedadEms obligatoriedad
Ems obligatoriedadEliseo Anaya
 
Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)
Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)
Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)Salziger RadStation KG
 
SC Melle 03 - Stadionecho - SCM gegen SV Hansa Friesoythe
SC Melle 03 - Stadionecho - SCM gegen SV Hansa FriesoytheSC Melle 03 - Stadionecho - SCM gegen SV Hansa Friesoythe
SC Melle 03 - Stadionecho - SCM gegen SV Hansa FriesoytheSCM Fussball
 
RAD Studio XE8 - Delphi Tour 2015 - Edición en Español
RAD Studio XE8 - Delphi Tour 2015 - Edición en EspañolRAD Studio XE8 - Delphi Tour 2015 - Edición en Español
RAD Studio XE8 - Delphi Tour 2015 - Edición en EspañolFernando Rizzato
 

Viewers also liked (20)

Learning Online - EMS Introduction to Participants
Learning Online - EMS Introduction to ParticipantsLearning Online - EMS Introduction to Participants
Learning Online - EMS Introduction to Participants
 
SummIT 2015 - Wearables in EMS
SummIT 2015 - Wearables in EMSSummIT 2015 - Wearables in EMS
SummIT 2015 - Wearables in EMS
 
20110804 ems intro_english
20110804 ems intro_english20110804 ems intro_english
20110804 ems intro_english
 
Trends in online emergency responder education
Trends in online emergency responder educationTrends in online emergency responder education
Trends in online emergency responder education
 
California Ambulance Association 2010 Annual Conference
California Ambulance Association 2010 Annual ConferenceCalifornia Ambulance Association 2010 Annual Conference
California Ambulance Association 2010 Annual Conference
 
India electronics manufacturing services (EMS) and contract manufacturing
India electronics manufacturing services (EMS) and contract manufacturingIndia electronics manufacturing services (EMS) and contract manufacturing
India electronics manufacturing services (EMS) and contract manufacturing
 
O BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDER
O BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDERO BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDER
O BACK-END PERFEITO PARA APLICAÇÕES DELPHI E C++ BUILDER
 
4 5walls-johnson-goodman16
4 5walls-johnson-goodman164 5walls-johnson-goodman16
4 5walls-johnson-goodman16
 
E Bridge Ems Telemedicine Overview
E Bridge Ems Telemedicine OverviewE Bridge Ems Telemedicine Overview
E Bridge Ems Telemedicine Overview
 
Trends in Online Education
Trends in Online EducationTrends in Online Education
Trends in Online Education
 
[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...
[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...
[Smart Grid Market Research] Energy Management 3.0: Advanced Systems for Comm...
 
EMS CPAP Training
EMS CPAP TrainingEMS CPAP Training
EMS CPAP Training
 
Crew Resource Management For Ems Finished
Crew Resource Management For Ems FinishedCrew Resource Management For Ems Finished
Crew Resource Management For Ems Finished
 
Presentación de la Reforma Integral de la Educación Media Superior
Presentación de la Reforma Integral de la Educación Media SuperiorPresentación de la Reforma Integral de la Educación Media Superior
Presentación de la Reforma Integral de la Educación Media Superior
 
Ethik ems tag2
Ethik ems tag2Ethik ems tag2
Ethik ems tag2
 
Daejin catalogue k 2011 for web
Daejin catalogue k 2011 for webDaejin catalogue k 2011 for web
Daejin catalogue k 2011 for web
 
Ems obligatoriedad
Ems obligatoriedadEms obligatoriedad
Ems obligatoriedad
 
Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)
Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)
Rad-Touren aus der Region Boppard-Bad Salzig - Bad Ems (Rhein/Lahn)
 
SC Melle 03 - Stadionecho - SCM gegen SV Hansa Friesoythe
SC Melle 03 - Stadionecho - SCM gegen SV Hansa FriesoytheSC Melle 03 - Stadionecho - SCM gegen SV Hansa Friesoythe
SC Melle 03 - Stadionecho - SCM gegen SV Hansa Friesoythe
 
RAD Studio XE8 - Delphi Tour 2015 - Edición en Español
RAD Studio XE8 - Delphi Tour 2015 - Edición en EspañolRAD Studio XE8 - Delphi Tour 2015 - Edición en Español
RAD Studio XE8 - Delphi Tour 2015 - Edición en Español
 

Similar to Responsive Web Design

01 Introduction To CSS
01 Introduction To CSS01 Introduction To CSS
01 Introduction To CSScrgwbr
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignTung Dang
 
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Les Basiques - Web  Développement HTML5, CSS3, JS et PHPLes Basiques - Web  Développement HTML5, CSS3, JS et PHP
Les Basiques - Web Développement HTML5, CSS3, JS et PHPHamdi Hmidi
 
Stc 2015 preparing legacy projects for responsive design - technical issues
Stc 2015   preparing legacy projects for responsive design - technical issuesStc 2015   preparing legacy projects for responsive design - technical issues
Stc 2015 preparing legacy projects for responsive design - technical issuesNeil Perlin
 
What is Wordpress | What is HTML | Wordpress vs HTML
What is Wordpress | What is HTML | Wordpress vs HTMLWhat is Wordpress | What is HTML | Wordpress vs HTML
What is Wordpress | What is HTML | Wordpress vs HTMLdevbhargav1
 
Lean And Clean! Building A Site With Web Standards
Lean And Clean! Building A Site With Web StandardsLean And Clean! Building A Site With Web Standards
Lean And Clean! Building A Site With Web Standardsweb.designer.developer
 
Bruce Lawson Opera Indonesia
Bruce Lawson Opera IndonesiaBruce Lawson Opera Indonesia
Bruce Lawson Opera Indonesiabrucelawson
 
Wp responsive-theme-framework
Wp responsive-theme-frameworkWp responsive-theme-framework
Wp responsive-theme-frameworkDamien Oh
 
Web designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lessonWeb designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lessonMukalele Rogers
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1Heather Rock
 
How websites and search engines work
How websites and search engines workHow websites and search engines work
How websites and search engines workBrian Duffy
 
Web page design-cssfounder
Web page design-cssfounderWeb page design-cssfounder
Web page design-cssfounderCss Founder
 
Website 101: Build and Rebuild
Website 101: Build and RebuildWebsite 101: Build and Rebuild
Website 101: Build and RebuildSteve Matthews
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive EnhancementDan Sagisser
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Oleksii Prohonnyi
 
Web Design & Development !BATRA COMPUTER CENTRE
Web Design & Development !BATRA COMPUTER CENTREWeb Design & Development !BATRA COMPUTER CENTRE
Web Design & Development !BATRA COMPUTER CENTREjatin batra
 
A web standards & ud approach for access (bps public)
A web standards & ud approach for access (bps   public)A web standards & ud approach for access (bps   public)
A web standards & ud approach for access (bps public)Howard Kramer
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksNathan Smith
 

Similar to Responsive Web Design (20)

01 Introduction To CSS
01 Introduction To CSS01 Introduction To CSS
01 Introduction To CSS
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
Les Basiques - Web  Développement HTML5, CSS3, JS et PHPLes Basiques - Web  Développement HTML5, CSS3, JS et PHP
Les Basiques - Web Développement HTML5, CSS3, JS et PHP
 
Stc 2015 preparing legacy projects for responsive design - technical issues
Stc 2015   preparing legacy projects for responsive design - technical issuesStc 2015   preparing legacy projects for responsive design - technical issues
Stc 2015 preparing legacy projects for responsive design - technical issues
 
What is Wordpress | What is HTML | Wordpress vs HTML
What is Wordpress | What is HTML | Wordpress vs HTMLWhat is Wordpress | What is HTML | Wordpress vs HTML
What is Wordpress | What is HTML | Wordpress vs HTML
 
Lean And Clean! Building A Site With Web Standards
Lean And Clean! Building A Site With Web StandardsLean And Clean! Building A Site With Web Standards
Lean And Clean! Building A Site With Web Standards
 
Lean And Clean! Building A Site With
Lean And Clean! Building A Site WithLean And Clean! Building A Site With
Lean And Clean! Building A Site With
 
Bruce Lawson Opera Indonesia
Bruce Lawson Opera IndonesiaBruce Lawson Opera Indonesia
Bruce Lawson Opera Indonesia
 
Wp responsive-theme-framework
Wp responsive-theme-frameworkWp responsive-theme-framework
Wp responsive-theme-framework
 
Web designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lessonWeb designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lesson
 
GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1GDI Seattle Intermediate HTML and CSS Class 1
GDI Seattle Intermediate HTML and CSS Class 1
 
How websites and search engines work
How websites and search engines workHow websites and search engines work
How websites and search engines work
 
Web page design-cssfounder
Web page design-cssfounderWeb page design-cssfounder
Web page design-cssfounder
 
Code igniter
Code igniterCode igniter
Code igniter
 
Website 101: Build and Rebuild
Website 101: Build and RebuildWebsite 101: Build and Rebuild
Website 101: Build and Rebuild
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive Enhancement
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1
 
Web Design & Development !BATRA COMPUTER CENTRE
Web Design & Development !BATRA COMPUTER CENTREWeb Design & Development !BATRA COMPUTER CENTRE
Web Design & Development !BATRA COMPUTER CENTRE
 
A web standards & ud approach for access (bps public)
A web standards & ud approach for access (bps   public)A web standards & ud approach for access (bps   public)
A web standards & ud approach for access (bps public)
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
 

More from Mario Hernandez

Responsive images in Drupal 8
Responsive images in Drupal 8Responsive images in Drupal 8
Responsive images in Drupal 8Mario Hernandez
 
Component-driven Drupal Theming
Component-driven Drupal ThemingComponent-driven Drupal Theming
Component-driven Drupal ThemingMario Hernandez
 
Responsive design with flexbox
Responsive design with flexboxResponsive design with flexbox
Responsive design with flexboxMario Hernandez
 
Building your first d8 theme
Building your first d8 themeBuilding your first d8 theme
Building your first d8 themeMario Hernandez
 
Rapid wireframing and prototyping
Rapid wireframing and prototypingRapid wireframing and prototyping
Rapid wireframing and prototypingMario Hernandez
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSSMario Hernandez
 
Introduction to Drupal Content Management System
Introduction to Drupal Content Management SystemIntroduction to Drupal Content Management System
Introduction to Drupal Content Management SystemMario Hernandez
 
CSS3 for web designer - How to design a visually appealing website
CSS3 for web designer - How to design a visually appealing websiteCSS3 for web designer - How to design a visually appealing website
CSS3 for web designer - How to design a visually appealing websiteMario Hernandez
 
960 Grid System - A hands-on introduction
960 Grid System -  A hands-on introduction960 Grid System -  A hands-on introduction
960 Grid System - A hands-on introductionMario Hernandez
 
Front end-design and best practices
Front end-design and best practicesFront end-design and best practices
Front end-design and best practicesMario Hernandez
 
An introduction to the 960 grid system
An introduction to the 960 grid systemAn introduction to the 960 grid system
An introduction to the 960 grid systemMario Hernandez
 

More from Mario Hernandez (13)

Responsive images in Drupal 8
Responsive images in Drupal 8Responsive images in Drupal 8
Responsive images in Drupal 8
 
Component-driven Drupal Theming
Component-driven Drupal ThemingComponent-driven Drupal Theming
Component-driven Drupal Theming
 
Responsive design with flexbox
Responsive design with flexboxResponsive design with flexbox
Responsive design with flexbox
 
Building your first d8 theme
Building your first d8 themeBuilding your first d8 theme
Building your first d8 theme
 
HTML5 and CSS3
HTML5 and CSS3HTML5 and CSS3
HTML5 and CSS3
 
Introduction to drupal
Introduction to drupalIntroduction to drupal
Introduction to drupal
 
Rapid wireframing and prototyping
Rapid wireframing and prototypingRapid wireframing and prototyping
Rapid wireframing and prototyping
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Introduction to Drupal Content Management System
Introduction to Drupal Content Management SystemIntroduction to Drupal Content Management System
Introduction to Drupal Content Management System
 
CSS3 for web designer - How to design a visually appealing website
CSS3 for web designer - How to design a visually appealing websiteCSS3 for web designer - How to design a visually appealing website
CSS3 for web designer - How to design a visually appealing website
 
960 Grid System - A hands-on introduction
960 Grid System -  A hands-on introduction960 Grid System -  A hands-on introduction
960 Grid System - A hands-on introduction
 
Front end-design and best practices
Front end-design and best practicesFront end-design and best practices
Front end-design and best practices
 
An introduction to the 960 grid system
An introduction to the 960 grid systemAn introduction to the 960 grid system
An introduction to the 960 grid system
 

Recently uploaded

10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designers10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designersPixeldarts
 
NBA power point presentation final copy y
NBA power point presentation final copy yNBA power point presentation final copy y
NBA power point presentation final copy ysrajece
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxKevinYaelJimnezSanti
 
Piece by Piece Magazine
Piece by Piece Magazine                      Piece by Piece Magazine
Piece by Piece Magazine CharlottePulte
 
Karim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppKarim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppNadaMohammed714321
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道yrolcks
 
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfLucyBonelli
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...Rishabh Aryan
 
Sharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme ManagementSharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme ManagementMd. Shariful Hoque
 
The spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyThe spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyChristopher Totten
 
guest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssguest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssNadaMohammed714321
 
Map of St. Louis Parks
Map of St. Louis Parks                              Map of St. Louis Parks
Map of St. Louis Parks CharlottePulte
 
Interior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project StudioInterior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project StudioRMG Project Studio
 
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptMaking and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptJIT KUMAR GUPTA
 
CAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdfCAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdfAlasAlthaher
 
world health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbworld health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbpreetirao780
 
guest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssguest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssNadaMohammed714321
 
10 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 202410 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 2024digital learning point
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Rndexperts
 
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxUnit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxNitish292041
 

Recently uploaded (20)

10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designers10 must-have Chrome extensions for designers
10 must-have Chrome extensions for designers
 
NBA power point presentation final copy y
NBA power point presentation final copy yNBA power point presentation final copy y
NBA power point presentation final copy y
 
Niintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptxNiintendo Wii Presentation Template.pptx
Niintendo Wii Presentation Template.pptx
 
Piece by Piece Magazine
Piece by Piece Magazine                      Piece by Piece Magazine
Piece by Piece Magazine
 
Karim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 pppppppppppppppKarim apartment ideas 02 ppppppppppppppp
Karim apartment ideas 02 ppppppppppppppp
 
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
怎么办理英国Newcastle毕业证纽卡斯尔大学学位证书一手渠道
 
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdfsimpson-lee_house_dt20ajshsjsjsjsjj15.pdf
simpson-lee_house_dt20ajshsjsjsjsjj15.pdf
 
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
DAKSHIN BIHAR GRAMIN BANK: REDEFINING THE DIGITAL BANKING EXPERIENCE WITH A U...
 
Sharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme ManagementSharif's 9-BOX Monitoring Model for Adaptive Programme Management
Sharif's 9-BOX Monitoring Model for Adaptive Programme Management
 
The spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenologyThe spirit of digital place - game worlds and architectural phenomenology
The spirit of digital place - game worlds and architectural phenomenology
 
guest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssssguest bathroom white and bluesssssssssss
guest bathroom white and bluesssssssssss
 
Map of St. Louis Parks
Map of St. Louis Parks                              Map of St. Louis Parks
Map of St. Louis Parks
 
Interior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project StudioInterior Design for Office a cura di RMG Project Studio
Interior Design for Office a cura di RMG Project Studio
 
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.pptMaking and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
Making and Unmaking of Chandigarh - A City of Two Plans2-4-24.ppt
 
CAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdfCAPITAL GATE CASE STUDY -regional case study.pdf
CAPITAL GATE CASE STUDY -regional case study.pdf
 
world health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbbworld health day 2024.pptxgbbvggvbhjjjbbbb
world health day 2024.pptxgbbvggvbhjjjbbbb
 
guest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssssguest bathroom white and blue ssssssssss
guest bathroom white and blue ssssssssss
 
10 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 202410 Best WordPress Plugins to make the website effective in 2024
10 Best WordPress Plugins to make the website effective in 2024
 
Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025Top 10 Modern Web Design Trends for 2025
Top 10 Modern Web Design Trends for 2025
 
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptxUnit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
Unit1_Syllbwbnwnwneneneneneneentation_Sem2.pptx
 

Responsive Web Design

Editor's Notes

  1. Search engines want to do their jobs as best as possible by referring users to websites and content that is the most relevant to what the user is looking for. So how is relevancy determined?
  2. Is determined by the theme that is being given, the text on the page, and the titles and descriptions that are given.
  3. How fast is your site and does it work properly?
  4. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  5. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  6. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  7. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  8. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  9. \n
  10. \n
  11. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  12. \n
  13. First introduced in 2009 by Ethan Marcotte who has also written a book with the same title and which I also recommend.\n\nI&amp;#x2019;ve spent the last two years learning about and really digging into responsive Web design and I&amp;#x2019;ve gotta say, It is the beginning of a new era in the Web.\n\n\n
  14. Regardless of what approach you take, you should always consider &amp;#x201C;Mobile First&amp;#x201D;.\n\nCoined by Luke Wroblewski. He wrote a book with this title and highly recommend it.\n\n\nStarting with mobile first forces you to prioritize what&amp;#x2019;s important.\n\nThis is our approach. Every time a new application or even single functionality is introduce to our team. We always ask ourselves, How is this going to work on a mobile device?\n
  15. This is the challenge. Never before has the work of Web Designers been so hard and complicated.\n\nHow do you design for for all these devices?\nDo you have the staff and resources to develop for all of these devices? Do you have the budget?\n\nDo you do native apps or web apps? There isn&amp;#x2019;t a one approach solution.\n
  16. You evaluate. You no longer have the luxury of all the real-estate you want. YOu are forced to prioritized and think of content in a more practical manner.\n\nIf you properly think about serving your content the best way possible on a smart phone, graduating to a tablet, notebook or desktop will be that much easier because you are already addressing what&amp;#x2019;s important up-front.\n\nAt first this seems backwards but if you really think about it. The less space you have to work with the better use you&amp;#x2019;ll attempt to make of every pixel available. This is not the case if you start with the desktop because you have all the space in the world.\n
  17. \n
  18. Introduce Neil and tell the audience how he was able to incorporate what we have done on Drupal into .Net\n
  19. Introduce Neil and tell the audience how he was able to incorporate what we have done on Drupal into .Net\n