SlideShare a Scribd company logo
1 of 114
Download to read offline
GOING RESPONSIVE
ROBERT COCHRAN
@COCHRARJ
ROBERT COCHRAN
• Consultant with Manifest
Solutions
• Practicing and teaching
responsive web development
for over 2 years.
• Author of cuke_sniffer, an open
source library used to root out
code smells in your Cucumber
projects using ruby.
ROBERT COCHRAN
r-cochran
@cochrarj
SOURCE
HTTPS://GITHUB.COM/R-COCHRAN/GOING_RESPONSIVE
GOALS
Understand what it means to be responsive
Explore options for going responsive
Learn about the core concepts of creating a
responsive site
Walk through an update to a existing site applying
the core concepts
Compare and contrast different libraries and
frameworks in the responsive space
WHAT MAKES A SITE
RESPONSIVE?
WHAT MAKES A SITE RESPONSIVE?
Responsive web design (RWD) is a web design
approach aimed at crafting sites to provide an
optimal viewing experience—easy reading and
navigation with a minimum of resizing, panning, and
scrolling—across a wide range of devices (from
mobile phones to desktop computer monitors).


-Wikipedia
1300px
820px
400px
1300px
820px
400px
SIGNS OF A NON RESPONSIVE SITE
Side scrolling
Overlapping elements/text
Hard to click controls
Having to zoom in to read anything
Modals/popups that can’t be removed
Tables in markup
TABLES
Side scrolling
SIGNS OF A NON RESPONSIVE SITE
That slowly burning
feeling as a vein is about
to burst in your head from
having to use this site one
more timeRAGE
Poor user experience.
RAGE
OPTIONS
1. IGNORE IT!
Too much work/time/
money to fix it!
We only support desktops
and IE 6 through 8!
We’ll fix it later! (Technical
Debt)
PROBABLY NOT.
CAN WE AFFORD IT?
50.2% 49.8%
BROWSER TRACKING OPTIONS
2. BUILD A DEDICATED
MOBILE SITE
SHOULD WE DO IT?
Duplication
Maintenance
Different teams
Requirements
Design
Experience
Confusing to Users
3. DESIGN FOR MOBILE FIRST
3. DESIGN FOR MOBILE FIRST
Only applicable for new pages/sites
Prevents technical debt
4. PAY THE TECHNICAL DEBT
4. PAY THE TECHNICAL DEBT
Slowly crawl your app making updates
Potential for drastic changes to site and functionality
One code base
RESPONSIVE MECHANICS
Fluid Grids
Flexible Images
Media Queries
– Chris Judd
“[it’s all just] Black Magic.”
FLUID GRIDS
Relative Units
Target / Context = Result
Sidebar: 300px / 960px = 31.25%
Main Content: 640px / 960px = 66.6%
Margin: 20px / 960px = 2.08%
400px
266px125px
Sidebar: 125px / 400px = 31.25%
Main Content: 266.4px / 400px = 66.6%
Margin: 8.32px / 400px = 2.08%
FLEXIBLE IMAGES
FLEXIBLE IMAGES
CSS.
SIMPLE FIX
500px
MEDIA QUERIES
MEDIA QUERIES
Conditional Styles
Chained conditions
Group Styles
MEDIA TYPES
braille
embossed
handheld
print
projection
screen
tty
tv
all
MEDIA FEATURES
color
color-index
device-aspect-ratio
device-height
device-width
grid
height
monochrome
resolution
scan
width
MEDIA FEATURES
-MIN & -MAX
BREAKPOINTS
http://workbysimon.com/observatory/responsive-web-design-breakpoints-or-fluid/
800px
600px
PITFALLS
Order of style
Inline styles
!important styles
Order of style
Inline style
!important
CSS RULES TO NOT PULL YOUR
HAIR OUT.
Don’t use inline styles.
Include media queries in a separate css file that is
included last.
Use !important sparingly.
REVIEW
Fluid Grids - make it flow/fit
Flexible Images - make it fit
Media Queries - make it work
TACKLING
THE
PROBLEM
UPDATING A NON
RESPONSIVE SITE.
SHRINK TEST / PHONE TEST
Side scrolling
Overlapping elements/text
Tables in markup
Hard to click controls
Having to zoom in to read anything
Modals/popups that can’t be removed
DEBT
• Overlapping title bar
and menu
• Difficult to click menu
• Menu takes up a lot of
real estate always
• Side scrolling
• Small text
• Difficult to click buttons
• Theme disrupted
(numbers against photo)
• Immortal modal
DEBT - EASY
• Overlapping title bar
and menu
• Difficult to click menu
• Menu takes up a lot of
real estate always
• Side scrolling
• Small text
• Difficult to click buttons
• Theme disrupted
(numbers against photo)
• Immortal modal
DEBT - MEDIUM
• Overlapping title bar
and menu
• Difficult to click menu
• Menu takes up a lot of
real estate always
• Side scrolling
• Small text
• Difficult to click buttons
• Theme disrupted
(numbers against photo)
• Immortal modal
DEBT - HARD
• Overlapping title bar
and menu
• Difficult to click menu
• Menu takes up a lot of
real estate always
• Side scrolling
• Small text
• Difficult to click buttons
• Theme disrupted
(numbers against photo)
• Immortal modal
PAYING THE EASY DEBT
OVERLAPPING TITLE BAR
OVERLAPPING TITLE BAR
MENU TAKES UP A LOT OF REAL
ESTATE ALWAYS
• Too tall
• Takes up almost a
fifth of the page at all
times
MENU TAKES UP A LOT OF REAL
ESTATE ALWAYS
SIDE SCROLLING
SIDE SCROLLING
SMALL TEXT
400px
SMALL TEXT - RULES
+2 to +6 pixels for fonts, more for hyperlinks
Reduce Padding and use all your available space
Use web fonts
SMALL TEXT - RULES
+2 to +6 pixels for fonts, more for hyperlinks
Reduce Padding and use all your available space
Use web fonts
SMALL TEXT - RULES
+2 to +6 pixels for fonts, more for hyperlinks
Reduce Padding and use all your available space
Use web fonts
SMALL TEXT
DIFFICULT TO CLICK BUTTONS
Thumb
The average thumb
is 45 - 57 pixels
wide
BUTTON RULES
Enlarge the text/icons
Take up 1/3rd of the screen at narrowest, full width
being best
Margins to reduce targets in area of button
DIFFICULT TO CLICK BUTTONS
Thumb
PAYING THE MEDIUM DEBT
SITE THEME
SITE THEME
SITE THEME
Flexible Grid
SITE THEME RULES
Identify your supported breakpoints and build your
grid around them
Avoid non-mobile features
Avoid tables
IMMORTAL MODALS
IMMORTAL MODALS - QUICK AND
FLAWED
Bind escape to close the modal
IMMORTAL MODALS
PAYING THE HARD DEBT
MENUS
Hover based menus - replaced
Treated like buttons
Reuse the existing menu if possible
Reduced footprint
hide it all together
Thumb
ADDING THE BUTTON
ADDING THE BUTTON
TOGGLING THE MENU
STYLING THE MENU
Thumb
DEBT
• Overlapping title bar
and menu
• Difficult to click menu
• Menu takes up a lot of
real estate always
• Side scrolling
• Small text
• Difficult to click buttons
• Theme disrupted
(numbers against photo)
• Immortal modal
BATTLE PLAN
1. Address issues that make your site unusable.
2. Identify breakpoints
3. High footprint items
4. Flexible grids and images
5. Individual Styling
LIBRARIES/FRAMEWORKS
LIBRARIES/FRAMEWORKS
CONS
Update lots of DOM to
include classes and
adding wrappers
Magic
PROS
Built in responsive grid
Nest-able grids
Components/Javascript
CSS Precompilers
RESPONSIVE GRID SYSTEM
RESPONSIVE GRID SYSTEM
(LIBRARY)
PROS
CSS library not a framework.
Supplies different flexible grids
Plug and play css from
website
Good documentation
No javascript
CONS
Not as widely used as Bootstrap/
Foundation
Only breakpoints set at 480px
USING THE GRID SYSTEM
Wrapper Classes
Base Width
BOOTSTRAP
BOOTSTRAP (FRAMEWORK)
PROS
12 column grid
multiple breakpoints
Additional styles for other
components to be
responsive (images/inputs/
buttons)
Components
css pre compiler easy to
customize styles. {less} and
SASS.
Widely used, easy to
stackoverflow
BOOTSTRAP (FRAMEWORK)
Cons
Lots of javascript magic
Update lots of DOM to include classes and adding wrappers
Large files (even minified)
Vanilla
Parts don’t work when javascript is disabled
Significant changes from version to version
USING THE GRID SYSTEM
Wrapper Classes
Device Size
Width
Column Width: 1 - 12Devices:
l : > 1200px
md: > 991 px
sm: > 767px,
xs
COMPONENTS
Glyphicons
Dropdowns
Button groups
Input groups
Checkbox and radios addons
Button addons
Navs
Tabs
Pills
Navbar
Breadcrumbs
Pagination
Labels
Badges
Jumbotron
Page header
Thumbnails
Alerts
Progress bars
Media objects
List group
Panels
Responsive Embed
Wells
SIMPLE COMPONENTS
Wrapper Class
DecoratorBase
COMPLEX COMPONENTS
JAVASCRIPT
Modals
Dropdown
Scrollspy
Tab
Tooltip
Popover
Alert
Button
Collapse
Carousel
Affix
BOOTSTRAP
FOUNDATION
BOOTSTRAP
FOUNDATION (FRAMEWORK)
Pros
Block Grid
Building Blocks
Form Validation (Abide)
Interchange (responsive images)
SASS.
doesn’t look like bootstrap
FOUNDATION (FRAMEWORK)
Cons
Large files (even minified)
Huge project structure
USING THE GRID SYSTEM
Wrapper Class
Device Size Width Base
USING THE BLOCK GRID
ColumnsDevice Size
COMPONENTS
Grid
Flex Grid
Forms
Visibility Classes
Float Classes
Typography
Button
Button Group
Close Button
Slider
Switch
Callout
Dropdown
Media Object
Off-canvas
Reveal
Table
Tabs
Media
Badge
Flex Video
Label
Overview
Menu
Dropdown Menu
Drilldown Menu
Accordion Menu
Top Bar
Responsive Navigation
Magellan
Pagination
Breadcrumbs
Accordion
Orbit
Progress Bar
Thumbnail
Tooltip
Plugins
Abide
Equalizer
Interchange
Toggled
Sticky
JAVASCRIPT
Interchange Responsive Content
Off-Canvas
Top Bar
Magellan Sticky Nav
Orbit Slider
Clearing Lightbox
Range Sliders
Abide Validation
Split Buttons
Dropdown Buttons
Reveal Modal
Alerts
Prompts
Tooltips
Joyride
Dropdowns
Accordion
Tabs
Equalizer
RECOMMENDATIONS
Small simple site?
Large Site with out of the box
working components?
Don't want to be married to a
framework?
Want to deal with magic?
Something that has support?
Something that has be google
debugged easy?
GOALS
Understand what it means to be responsive
Explore options for going responsive
Learn about the core concepts of creating a
responsive site
Walk through an update to a existing site applying
the core concepts
Compare and contrast different libraries and
frameworks in the responsive space
QUESTIONS?
ROBERT COCHRAN
r-cochran
@cochrarj
HTTPS://GITHUB.COM/R-COCHRAN/GOING_RESPONSIVE

More Related Content

What's hot

Design Best Practices for WordPress
Design Best Practices for WordPressDesign Best Practices for WordPress
Design Best Practices for WordPressSuzette Franck
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sasschriseppstein
 
The Art of Web Design, 101
The Art of Web Design, 101The Art of Web Design, 101
The Art of Web Design, 101kellyhousholder
 
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...Jer Clarke
 
Making Your Own CSS Framework
Making Your Own CSS FrameworkMaking Your Own CSS Framework
Making Your Own CSS FrameworkDan Sagisser
 
Quality Development with CSS3
Quality Development with CSS3Quality Development with CSS3
Quality Development with CSS3Shay Howe
 
BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12ucbdrupal
 
Web Design 101
Web Design 101Web Design 101
Web Design 101T.S. Lim
 
Intro to Building & Marketing Your Own Website
Intro to Building & Marketing Your Own WebsiteIntro to Building & Marketing Your Own Website
Intro to Building & Marketing Your Own WebsiteTom McCracken
 
Cfa facebook-sweeps-coupon page flow
Cfa facebook-sweeps-coupon page flowCfa facebook-sweeps-coupon page flow
Cfa facebook-sweeps-coupon page flowcfapromo
 
Drupal distributions - how to build them
Drupal distributions - how to build themDrupal distributions - how to build them
Drupal distributions - how to build themDick Olsson
 

What's hot (12)

Design Best Practices for WordPress
Design Best Practices for WordPressDesign Best Practices for WordPress
Design Best Practices for WordPress
 
Authoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & SassAuthoring Stylesheets with Compass & Sass
Authoring Stylesheets with Compass & Sass
 
The Art of Web Design, 101
The Art of Web Design, 101The Art of Web Design, 101
The Art of Web Design, 101
 
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
DRY CSS A don’t-repeat-yourself methodology for creating efficient, unified a...
 
Making Your Own CSS Framework
Making Your Own CSS FrameworkMaking Your Own CSS Framework
Making Your Own CSS Framework
 
Quality Development with CSS3
Quality Development with CSS3Quality Development with CSS3
Quality Development with CSS3
 
BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12BDUG Responsive Web Theming - 7/23/12
BDUG Responsive Web Theming - 7/23/12
 
Web Design 101
Web Design 101Web Design 101
Web Design 101
 
Intro to Building & Marketing Your Own Website
Intro to Building & Marketing Your Own WebsiteIntro to Building & Marketing Your Own Website
Intro to Building & Marketing Your Own Website
 
Cfa facebook-sweeps-coupon page flow
Cfa facebook-sweeps-coupon page flowCfa facebook-sweeps-coupon page flow
Cfa facebook-sweeps-coupon page flow
 
css-tutorial
css-tutorialcss-tutorial
css-tutorial
 
Drupal distributions - how to build them
Drupal distributions - how to build themDrupal distributions - how to build them
Drupal distributions - how to build them
 

Viewers also liked

Larry Killian Resume2012 (1)
Larry Killian Resume2012 (1)Larry Killian Resume2012 (1)
Larry Killian Resume2012 (1)Larry Killian
 
Yritys ei toimi ilman omistajatahtoa ja talouden suunnittelua
Yritys ei toimi ilman omistajatahtoa ja talouden suunnitteluaYritys ei toimi ilman omistajatahtoa ja talouden suunnittelua
Yritys ei toimi ilman omistajatahtoa ja talouden suunnitteluaAnne Ala-Nissilä
 
Measure What Matters Cohort - Preparing to Launch
Measure What Matters Cohort - Preparing to LaunchMeasure What Matters Cohort - Preparing to Launch
Measure What Matters Cohort - Preparing to LaunchDane Wetschler
 
Database migration simple, cross-engine and cross-platform migrations with ...
Database migration   simple, cross-engine and cross-platform migrations with ...Database migration   simple, cross-engine and cross-platform migrations with ...
Database migration simple, cross-engine and cross-platform migrations with ...Amazon Web Services
 
SLREN Network Infrastructue - A Proposal v1
SLREN Network Infrastructue - A Proposal v1SLREN Network Infrastructue - A Proposal v1
SLREN Network Infrastructue - A Proposal v1Charles Hubbard
 
Curso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLE
Curso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLECurso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLE
Curso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLESara Pérez Rodríguez
 
Overview of the new .NET Core and .NET Platform Standard
Overview of the new .NET Core and .NET Platform StandardOverview of the new .NET Core and .NET Platform Standard
Overview of the new .NET Core and .NET Platform StandardAlex Thissen
 
Data migration system in heterogeneous database
Data migration system in heterogeneous databaseData migration system in heterogeneous database
Data migration system in heterogeneous databaseeSAT Publishing House
 

Viewers also liked (16)

Larry Killian Resume2012 (1)
Larry Killian Resume2012 (1)Larry Killian Resume2012 (1)
Larry Killian Resume2012 (1)
 
Untitled 1
Untitled 1Untitled 1
Untitled 1
 
Ficha de videos
Ficha de videosFicha de videos
Ficha de videos
 
Yritys ei toimi ilman omistajatahtoa ja talouden suunnittelua
Yritys ei toimi ilman omistajatahtoa ja talouden suunnitteluaYritys ei toimi ilman omistajatahtoa ja talouden suunnittelua
Yritys ei toimi ilman omistajatahtoa ja talouden suunnittelua
 
Car Decals
Car DecalsCar Decals
Car Decals
 
Slide share,
Slide share,Slide share,
Slide share,
 
Measure What Matters Cohort - Preparing to Launch
Measure What Matters Cohort - Preparing to LaunchMeasure What Matters Cohort - Preparing to Launch
Measure What Matters Cohort - Preparing to Launch
 
Database migration simple, cross-engine and cross-platform migrations with ...
Database migration   simple, cross-engine and cross-platform migrations with ...Database migration   simple, cross-engine and cross-platform migrations with ...
Database migration simple, cross-engine and cross-platform migrations with ...
 
Pitch 2
Pitch 2Pitch 2
Pitch 2
 
Jjjjjjjj
JjjjjjjjJjjjjjjj
Jjjjjjjj
 
SLREN Network Infrastructue - A Proposal v1
SLREN Network Infrastructue - A Proposal v1SLREN Network Infrastructue - A Proposal v1
SLREN Network Infrastructue - A Proposal v1
 
Resumen de videos iii
Resumen de videos iiiResumen de videos iii
Resumen de videos iii
 
Curso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLE
Curso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLECurso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLE
Curso: ALIMENTACIÓN Y NUTRICIÓN PARA UNA VIDA SALUDABLE
 
Business AS levels
Business AS levelsBusiness AS levels
Business AS levels
 
Overview of the new .NET Core and .NET Platform Standard
Overview of the new .NET Core and .NET Platform StandardOverview of the new .NET Core and .NET Platform Standard
Overview of the new .NET Core and .NET Platform Standard
 
Data migration system in heterogeneous database
Data migration system in heterogeneous databaseData migration system in heterogeneous database
Data migration system in heterogeneous database
 

Similar to Going Responsive Design Core Concepts

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignDebra Shapiro
 
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...gravityworksdd
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignShawn Calvert
 
Spca2014 introduction responsive master page niaulin
Spca2014 introduction responsive master page niaulinSpca2014 introduction responsive master page niaulin
Spca2014 introduction responsive master page niaulinNCCOMMS
 
Responsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needsResponsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needsSEGIC
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web DesignMike Wilcox
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design BasicsAustin Walker
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Designdanpastori
 
Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Mediacurrent
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3Doris Chen
 
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
 
Content strategy for mobile
Content strategy for mobileContent strategy for mobile
Content strategy for mobileKarolina Szczur
 
Responsive Web Design & APEX Theme 25
Responsive Web Design & APEX Theme 25Responsive Web Design & APEX Theme 25
Responsive Web Design & APEX Theme 25Christian Rokitta
 
Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?Karin Tracy
 
Introduction to a Responsive Master Page with the Design Manager
Introduction to a Responsive Master Page with the Design ManagerIntroduction to a Responsive Master Page with the Design Manager
Introduction to a Responsive Master Page with the Design ManagerShareGate
 
Responsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHPeytz Design
 
Building Better Responsive Websites
Building Better Responsive WebsitesBuilding Better Responsive Websites
Building Better Responsive WebsitesHolger Bartel
 
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)Christian Rokitta
 
SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013Marc D Anderson
 

Similar to Going Responsive Design Core Concepts (20)

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
Responsive Web Design: From Mobile To Desktop, And Beyond (updated for MobiDe...
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
Spca2014 introduction responsive master page niaulin
Spca2014 introduction responsive master page niaulinSpca2014 introduction responsive master page niaulin
Spca2014 introduction responsive master page niaulin
 
Responsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needsResponsive Web Designed for your communication and marketing needs
Responsive Web Designed for your communication and marketing needs
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design Basics
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Let's dig into the Omega Theme!
Let's dig into the Omega Theme!Let's dig into the Omega Theme!
Let's dig into the Omega Theme!
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
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
 
Content strategy for mobile
Content strategy for mobileContent strategy for mobile
Content strategy for mobile
 
Responsive Web Design & APEX Theme 25
Responsive Web Design & APEX Theme 25Responsive Web Design & APEX Theme 25
Responsive Web Design & APEX Theme 25
 
Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?Responsive Design: What is it? How do we do it? How much will it cost?
Responsive Design: What is it? How do we do it? How much will it cost?
 
Introduction to a Responsive Master Page with the Design Manager
Introduction to a Responsive Master Page with the Design ManagerIntroduction to a Responsive Master Page with the Design Manager
Introduction to a Responsive Master Page with the Design Manager
 
Responsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPH
 
Building Better Responsive Websites
Building Better Responsive WebsitesBuilding Better Responsive Websites
Building Better Responsive Websites
 
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
Responsive Web Design & APEX Theme 25 (OGh APEX World 2014)
 
Web Design Norms
Web Design NormsWeb Design Norms
Web Design Norms
 
SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013SEF 2014 - Responsive Design in SharePoint 2013
SEF 2014 - Responsive Design in SharePoint 2013
 

Recently uploaded

『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书rnrncn29
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
Q4-1-Illustrating-Hypothesis-Testing.pptx
Q4-1-Illustrating-Hypothesis-Testing.pptxQ4-1-Illustrating-Hypothesis-Testing.pptx
Q4-1-Illustrating-Hypothesis-Testing.pptxeditsforyah
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhimiss dipika
 
PHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationPHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationLinaWolf1
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书zdzoqco
 
NSX-T and Service Interfaces presentation
NSX-T and Service Interfaces presentationNSX-T and Service Interfaces presentation
NSX-T and Service Interfaces presentationMarko4394
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxDyna Gilbert
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书rnrncn29
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predieusebiomeyer
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa494f574xmv
 

Recently uploaded (17)

『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
『澳洲文凭』买拉筹伯大学毕业证书成绩单办理澳洲LTU文凭学位证书
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
Q4-1-Illustrating-Hypothesis-Testing.pptx
Q4-1-Illustrating-Hypothesis-Testing.pptxQ4-1-Illustrating-Hypothesis-Testing.pptx
Q4-1-Illustrating-Hypothesis-Testing.pptx
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
Contact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New DelhiContact Rya Baby for Call Girls New Delhi
Contact Rya Baby for Call Girls New Delhi
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
PHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 DocumentationPHP-based rendering of TYPO3 Documentation
PHP-based rendering of TYPO3 Documentation
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
办理多伦多大学毕业证成绩单|购买加拿大UTSG文凭证书
 
NSX-T and Service Interfaces presentation
NSX-T and Service Interfaces presentationNSX-T and Service Interfaces presentation
NSX-T and Service Interfaces presentation
 
Top 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptxTop 10 Interactive Website Design Trends in 2024.pptx
Top 10 Interactive Website Design Trends in 2024.pptx
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
『澳洲文凭』买詹姆士库克大学毕业证书成绩单办理澳洲JCU文凭学位证书
 
SCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is prediSCM Symposium PPT Format Customer loyalty is predi
SCM Symposium PPT Format Customer loyalty is predi
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 
Film cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasaFilm cover research (1).pptxsdasdasdasdasdasa
Film cover research (1).pptxsdasdasdasdasdasa
 

Going Responsive Design Core Concepts