SlideShare a Scribd company logo
1 of 66
3/2013 – Tung Dang
Objectives
 Developing a website in a way that allows the layout
to adjust according to the user’s screen resolution by
using:
1. A flexible, grid-based layout
2. Relative unit in typography (% and em)
3. A flexible media (image, video …)
4. Media Query (CSS3)
Prerequisites
 Basic CSS, HTML Knowledge
 Have ability to convert PSD to normal website have
fixed width
Outline
 What is Responsive Web Design?
 Viewport and meta tags for mobile browser
 How to make Responsive Web?
1. Mobile-first strategy
2. Typography
3. Flexible, grid-based layout
4. Flexible media (image, video)
5. Media Query (CSS3)
THE FUTURE OF WEB
THE FUTURE OF MOBILE
How to serve mobile
users?
 Separate Mobile Site
How to serve mobile
users?
 Mobile App
How to serve mobile
users?
 Mobile Theme
How about other devices?
What is Responsive Web
Design (RWD)?
 One version of a website can scale responsively to
fit on different platforms.
 Must work with any form of information
 Accessible from any device.
Example of RWD
 See more: http://mediaqueri.es/
Pros & Cons
 Pros:
 Good for SEO
 Single URL for desktop and mobile. No redirection
 Content parity. No duplicated content
 Easy for maintenance
 Adapt with universal devices
 Cons:
 Slower performance if you have poor implementation
Terms you have to know
 Adaptive
 Responsive
 Fluid >< Fixed-Width
 Breakpoint
 Mobile-First
How to become
Responsive?
1. Mobile-First
2. Viewport setting
3. Relative Typography
4. Flexible Grid
5. Flexible Image, Video …
6. Flexible Media Query
7. Compress content where possible, and avoid sending
unnecessary data
Mobile-First
 The idea is to start by considering the simplest
possible version (usually the mobile version) and
work up through larger and more complex designs
 Emphasis on core content and design elements
(typography and colours, then layout, etc).
Mobile-First
Mobile-First
Meta tags for mobiles
 Viewport meta tags
 Other meta tags optimizing for mobiles
What is viewport?
 If you don’t set viewport: width=device-width, Safari
will set viewport default = 980px;
What is viewport?
What is viewport?
What is viewport?
Responsive Formula
Relative Typography
 Try to use the formular to convert fixed font-size to
relative font-size
Relative Typography
 We are using em/rem/% instead of px for font size
and spacing.
 Need an easier way, check this out:
 http://pxtoem.com/
 http://responsv.com/flexible-math/
Flexible/Fluid Typography
 fittextjs.com
 letteringjs.com
Question ?
 When should I use em, percentage and pixel?
 What context of line-height property?
 Should I use em or px for typography?
Flexible/Fluid Width
Flexible/Fluid Width
Flexible/Fluid Width:
Margin
Flexible/Fluid Width:
Padding
Fluid Grid
 With fluid grid: will make your job easier and reduce
number of breakpoints/media queries
Fluid Grid
Fluid Grid
 Skeleton:
 http://twitter.github.com/bootstrap/
 320 And Up
 Gets Skeleton
 Less Framework
 Responsive.gs
 Unsemantic
 1140 CSS Grid
 Fluid Grids
 http://modulargrid.org/
Flexible Width without Media
Query
Media Query
 What is Media Query?
 Browser Support? How does media query work with
old-browsers (such as IE8 and below) ?
What is Media Query ?
 We can adapt our design to specific range of
devices without changing the content
 CSS 2.1
What is Media Query ?
 CSS 3
 Remember set viewport meta tags
Media Query - Browser
Support
 Media Query for non-support browsers (<= IE8)
 https://code.google.com/p/css3-mediaqueries-js/
 https://github.com/scottjehl/Respond
 https://github.com/pyrsmk/mediatizr
How to choose
breakpoint?
How to choose
breakpoint?
How to choose breakpoint?
How to choose Viewport?
How to choose
breakpoint?
How to choose
breakpoint?
Question?
 Can we replace max/min-width by max/min-device-
width?
 Will browsers download all CSS files when using
media queries in <link> tags?
 http://adapt.960.gs/: to save HTTP requests.
 Should we arrange CSS file or media queries in an order
?
Flexible Image: Level 1
 If you want to support flexible images in old-browers,
use a small script to fix:
http://unstoppablerobotninja.com/entry/fluid-images
Flexible Image: Retina
Display - Level 2
 SVG (suite for logo, icon…)
 Icon fonts
 CSS with Media Query
Flexible Image: Retina
Display - Level 2
Flexible Image: Level 3
 https://github.com/scottjehl/picturefill
Fluid Video
 How to import video into website:
 HTML5 <video> tag
 Using <iframe>, ex: YouTube or Vimeo
 <object>/<embed> tags to display a Flash player
Fluid Video (cont.)
 Demo
Fluid Video (cont.)
 http://fitvidsjs.com/
Responsive for old
browsers
 Media Query for non-support browsers (<= IE8)
 https://code.google.com/p/css3-mediaqueries-js/
 https://github.com/scottjehl/Respond
 https://github.com/pyrsmk/mediatizr
 HTML 5 tags for <= IE8: html5shiv (html5shim)
 REM unit polyfill: https://github.com/chuckcarpenter/REM-
unit-polyfill
Enhancement
 Use CSS transition to resize smoothly:
http://elliotjaystocks.com/blog/css-transitions-media-queries/
 Responsive Data Table: http://css-tricks.com/responsive-data-tables/
 http://responsejs.com/
Tool
 Test Web
 http://responsivepx.com/
 http://mattkersley.com/responsive/
 http://www.responsinator.com/
 http://responsive.is/anderssonwise.com
 http://screenqueri.es/
 http://quirktools.com/screenfly/
References
References
 http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
 http://alistapart.com/article/creating-intrinsic-ratios-for-video
 http://filamentgroup.com/lab/responsive_images_experimenting_with_context_aware_imag
e_sizing
 http://developer.apple.com/library/safari/#documentation/appleapplications/reference/Safar
iHTMLRef/Articles/MetaTags.html
 https://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/Sa
fariWebContent/UsingtheViewport/UsingtheViewport.html
 https://developer.mozilla.org/en-US/docs/Mobile/Viewport_meta_tag#Viewport_basics
 http://dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport/
 http://bradfrostweb.com/blog/web/mobile-first-responsive-web-design/
 http://www.quirksmode.org/mobile/viewports2.html
Summary: How to become
Responsive?
1. Mobile-First
2. Viewport setting
3. Relative Typography
4. Flexible Grid
5. Flexible Image, Video …
6. Media Query
7. Compress content where possible, and avoid sending
unnecessary data
Thanks for listening
Q&A
Demo: Responsive
Navigation
 http://coding.smashingmagazine.com/2013/01/15/off
-canvas-navigation-for-responsive-website/

More Related Content

What's hot

Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & ResourcesClarissa Peterson
 
Responsive Design for Non-Techies
Responsive Design for Non-TechiesResponsive Design for Non-Techies
Responsive Design for Non-TechiesMalcolm Jones
 
Mobile First Responsive Design
Mobile First Responsive DesignMobile First Responsive Design
Mobile First Responsive DesignJason Grigsby
 
Mobile First Responsive Web Design — BD Conf Oct 2013
Mobile First Responsive Web Design — BD Conf Oct 2013Mobile First Responsive Web Design — BD Conf Oct 2013
Mobile First Responsive Web Design — BD Conf Oct 2013Jason Grigsby
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignClarissa Peterson
 
Responsive Design in the Real World
Responsive Design in the Real WorldResponsive Design in the Real World
Responsive Design in the Real WorldClarissa Peterson
 
Responsive Images and Video
Responsive Images and VideoResponsive Images and Video
Responsive Images and VideoJason Grigsby
 
Adaptive Input — Breaking Development Conference, San Diego
Adaptive Input — Breaking Development Conference, San DiegoAdaptive Input — Breaking Development Conference, San Diego
Adaptive Input — Breaking Development Conference, San DiegoJason Grigsby
 
RESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignRESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignDave Olsen
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & ResourcesClarissa Peterson
 
Tips and tricks for the best user-friendly website
Tips and tricks for the best user-friendly website Tips and tricks for the best user-friendly website
Tips and tricks for the best user-friendly website ESRI Bulgaria
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web AppJason Grigsby
 
Responsive Design & Mobile First
Responsive Design & Mobile FirstResponsive Design & Mobile First
Responsive Design & Mobile FirstLuke Brooker
 
Responsive webdesign
Responsive webdesignResponsive webdesign
Responsive webdesignBart De Waele
 
2021 Chrome Dev Summit: Web Performance 101
2021 Chrome Dev Summit: Web Performance 1012021 Chrome Dev Summit: Web Performance 101
2021 Chrome Dev Summit: Web Performance 101Tammy Everts
 
9 worst practices in ux design
9 worst practices in ux design9 worst practices in ux design
9 worst practices in ux designSachin Khatiwoda
 
The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017Christian Heilmann
 
Washington,marcus,mobile presentation,ppt
Washington,marcus,mobile presentation,pptWashington,marcus,mobile presentation,ppt
Washington,marcus,mobile presentation,pptbeaverdust
 
The Soul in The Machine - Developing for Humans (FrankenJS edition)
The Soul in The Machine - Developing for Humans (FrankenJS edition)The Soul in The Machine - Developing for Humans (FrankenJS edition)
The Soul in The Machine - Developing for Humans (FrankenJS edition)Christian Heilmann
 
The Soul in The Machine - Developing for Humans
The Soul in The Machine - Developing for HumansThe Soul in The Machine - Developing for Humans
The Soul in The Machine - Developing for HumansChristian Heilmann
 

What's hot (20)

Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Responsive Design for Non-Techies
Responsive Design for Non-TechiesResponsive Design for Non-Techies
Responsive Design for Non-Techies
 
Mobile First Responsive Design
Mobile First Responsive DesignMobile First Responsive Design
Mobile First Responsive Design
 
Mobile First Responsive Web Design — BD Conf Oct 2013
Mobile First Responsive Web Design — BD Conf Oct 2013Mobile First Responsive Web Design — BD Conf Oct 2013
Mobile First Responsive Web Design — BD Conf Oct 2013
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
Responsive Design in the Real World
Responsive Design in the Real WorldResponsive Design in the Real World
Responsive Design in the Real World
 
Responsive Images and Video
Responsive Images and VideoResponsive Images and Video
Responsive Images and Video
 
Adaptive Input — Breaking Development Conference, San Diego
Adaptive Input — Breaking Development Conference, San DiegoAdaptive Input — Breaking Development Conference, San Diego
Adaptive Input — Breaking Development Conference, San Diego
 
RESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web DesignRESS: An Evolution of Responsive Web Design
RESS: An Evolution of Responsive Web Design
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Tips and tricks for the best user-friendly website
Tips and tricks for the best user-friendly website Tips and tricks for the best user-friendly website
Tips and tricks for the best user-friendly website
 
Planning Your Progressive Web App
Planning Your Progressive Web AppPlanning Your Progressive Web App
Planning Your Progressive Web App
 
Responsive Design & Mobile First
Responsive Design & Mobile FirstResponsive Design & Mobile First
Responsive Design & Mobile First
 
Responsive webdesign
Responsive webdesignResponsive webdesign
Responsive webdesign
 
2021 Chrome Dev Summit: Web Performance 101
2021 Chrome Dev Summit: Web Performance 1012021 Chrome Dev Summit: Web Performance 101
2021 Chrome Dev Summit: Web Performance 101
 
9 worst practices in ux design
9 worst practices in ux design9 worst practices in ux design
9 worst practices in ux design
 
The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017
 
Washington,marcus,mobile presentation,ppt
Washington,marcus,mobile presentation,pptWashington,marcus,mobile presentation,ppt
Washington,marcus,mobile presentation,ppt
 
The Soul in The Machine - Developing for Humans (FrankenJS edition)
The Soul in The Machine - Developing for Humans (FrankenJS edition)The Soul in The Machine - Developing for Humans (FrankenJS edition)
The Soul in The Machine - Developing for Humans (FrankenJS edition)
 
The Soul in The Machine - Developing for Humans
The Soul in The Machine - Developing for HumansThe Soul in The Machine - Developing for Humans
The Soul in The Machine - Developing for Humans
 

Similar to Responsive Web Design

Responsive Design for SharePoint
Responsive Design for SharePointResponsive Design for SharePoint
Responsive Design for SharePointCathy Dew
 
Optimizing Sites for Mobile Devices
Optimizing Sites for Mobile DevicesOptimizing Sites for Mobile Devices
Optimizing Sites for Mobile Devicesjameswillweb
 
Responsive web design
Responsive web designResponsive web design
Responsive web designZeeshan Khan
 
Responsive web designing ppt(1)
Responsive web designing ppt(1)Responsive web designing ppt(1)
Responsive web designing ppt(1)admecindia1
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteJj Jurgens
 
Web In Extreme Environment: Beyond Cross Browsing
Web In Extreme Environment: Beyond Cross BrowsingWeb In Extreme Environment: Beyond Cross Browsing
Web In Extreme Environment: Beyond Cross BrowsingGreg SHIN
 
Media queries and frameworks
Media queries and frameworksMedia queries and frameworks
Media queries and frameworksNicole Ryan
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oiljameswillweb
 
Html 5 mobile - nitty gritty
Html 5 mobile - nitty grittyHtml 5 mobile - nitty gritty
Html 5 mobile - nitty grittyMario Noble
 
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
 
Responsive web designing
Responsive web designingResponsive web designing
Responsive web designingAanand Bohara
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJason Harwig
 
Web topic 25 mobile optimized website
Web topic 25  mobile optimized websiteWeb topic 25  mobile optimized website
Web topic 25 mobile optimized websiteCK Yang
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive EnhancementDan Sagisser
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJulia Vi
 
Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)Tirthesh Ganatra
 

Similar to Responsive Web Design (20)

Responsive Design for SharePoint
Responsive Design for SharePointResponsive Design for SharePoint
Responsive Design for SharePoint
 
Optimizing Sites for Mobile Devices
Optimizing Sites for Mobile DevicesOptimizing Sites for Mobile Devices
Optimizing Sites for Mobile Devices
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Responsive Web Designing Fundamentals
Responsive Web Designing FundamentalsResponsive Web Designing Fundamentals
Responsive Web Designing Fundamentals
 
Responsive web designing ppt(1)
Responsive web designing ppt(1)Responsive web designing ppt(1)
Responsive web designing ppt(1)
 
How to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive WebsiteHow to Project-Manage and Implement a Responsive Website
How to Project-Manage and Implement a Responsive Website
 
Web In Extreme Environment: Beyond Cross Browsing
Web In Extreme Environment: Beyond Cross BrowsingWeb In Extreme Environment: Beyond Cross Browsing
Web In Extreme Environment: Beyond Cross Browsing
 
Media queries and frameworks
Media queries and frameworksMedia queries and frameworks
Media queries and frameworks
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
 
Html 5 mobile - nitty gritty
Html 5 mobile - nitty grittyHtml 5 mobile - nitty gritty
Html 5 mobile - nitty gritty
 
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
 
Responsive web designing
Responsive web designingResponsive web designing
Responsive web designing
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Adobe 30iun2011
Adobe 30iun2011Adobe 30iun2011
Adobe 30iun2011
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Web topic 25 mobile optimized website
Web topic 25  mobile optimized websiteWeb topic 25  mobile optimized website
Web topic 25 mobile optimized website
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive Enhancement
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Aaug sample slides
Aaug sample slidesAaug sample slides
Aaug sample slides
 
Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)
 

Recently uploaded

Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfngoud9212
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Panjabi Bagh 🔝 9953056974 🔝 Delhi escort Service
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Bluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdfBluetooth Controlled Car with Arduino.pdf
Bluetooth Controlled Car with Arduino.pdf
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 

Responsive Web Design

Editor's Notes

  1. Only optimized for small screens‣ Need to provide all content‣ content has to be managed twice‣ Issues when sharing content‣ Pretty expensive for an unsatisfying result
  2. Which platforms will you support?(iOS, Android, WindowsPhone)‣ Each update:- cost per platformmight take time (approval)What about search engines?‣ Your content won’t be indexed by themlinks to websites open in a new app (!)‣ no native browser functions :(bookmarking!)non selectable text (no copy-paste)‣ App’s often have their own interface language
  3. TabletsSmartphonesLaptop computersDesktop computersGame consolesTelevisionseReadersVehiclesAppliances
  4. http://mediaqueri.es/
  5. http://bradfrostweb.com/blog/web/mobile-first-responsive-web-design/
  6. http://bradfrostweb.com/blog/web/mobile-first-responsive-web-design/
  7. http://bradfrostweb.com/blog/web/mobile-first-responsive-web-design/
  8. http://developer.apple.com/library/safari/#documentation/appleapplications/reference/SafariHTMLRef/Articles/MetaTags.htmlhttps://developer.mozilla.org/en-US/docs/Mobile/Viewport_meta_tag#Viewport_basicshttp://dev.opera.com/articles/view/an-introduction-to-meta-viewport-and-viewport/
  9. Safari iPhone uses 980px, Opera 850px, Android WebKit 800px, and IE 974px.https://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.htmlhttp://www.quirksmode.org/mobile/viewports2.html
  10. Safari iPhone uses 980px, Opera 850px, Android WebKit 800px, and IE 974px.https://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.htmlhttp://www.quirksmode.org/mobile/viewports2.html
  11. Safari iPhone uses 980px, Opera 850px, Android WebKit 800px, and IE 974px.https://developer.apple.com/library/safari/#documentation/AppleApplications/Reference/SafariWebContent/UsingtheViewport/UsingtheViewport.htmlhttp://www.quirksmode.org/mobile/viewports2.html
  12. You must convert all to relative unit, don’t convert in partial of website
  13. https://c9.io/debuggervn/demo-front-end/workspace/19_RWD/relative-em.html
  14. http://alistapart.com/article/howtosizetextincss:http://d.alistapart.com/howtosizetextincss/ss-test-1.htmlhttp://d.alistapart.com/howtosizetextincss/ss-test-2.html
  15. http://www.w3.org/TR/css3-mediaqueries/#media0http://webdesignerwall.com/tutorials/css3-media-queries
  16. http://www.w3.org/TR/css3-mediaqueries/#media0http://webdesignerwall.com/tutorials/css3-media-queries
  17. http://www.w3.org/TR/css3-mediaqueries/#media0http://webdesignerwall.com/tutorials/css3-media-queries
  18. Demo: http://unstoppablerobotninja.com/demos/resize/http://unstoppablerobotninja.com/demos/resize/fix/
  19. http://coding.smashingmagazine.com/2012/08/20/towards-retina-web/
  20. http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
  21. http://alistapart.com/article/creating-intrinsic-ratios-for-video
  22. http://www.vanseodesign.com/web-design/articles-ive-written-elsewhere/http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/examining-responsive-navigation-off-canvas-patterns/