SlideShare a Scribd company logo
1 of 78
Download to read offline
RESPONSIVE WEB
DESIGN
Created by Vladimir Zhydal
WHAT?
Responsive Web Design (RWD) is an approach to web
design aimed at crafting sites to provide an optimal viewing
experience across a wide range of devices.
ONE SITE FOR EVERY SCREEN
WHY?
Day by day, the number of devices,
platforms, and browsers that need to work
with your site grows. Responsive web
design represents a fundamental shift in
how we’ll build websites for the decade to
come.
Jeffrey Veen
WEB STATISTICS
HISTORY
2004
A site layout example that adapts to browser viewport
width was first demonstrated by Cameron Adams.
2009
CSS3 media queries were almost ready for prime time.
2010
Ethan Marcotte coined the term responsive web design.
2012
Responsive design was listed as #2 in Top Web Design
Trends.
HOW CAN WE DO RESPONSIVE?
viewport
media queries
flexible images and media
adaptive images
grids
flexbox
responsive tables
VIEWPORT
VIEWPORT BASICS
DEVICE PIXELS AND CSS PIXELS
Device pixels give the formal resolution of whichever
device you’re working on.
At zoom level 100% one CSS pixel is exactly equal to one
device pixel.
Zooming to 200% makes one CSS pixel grow to four times
the size of one device pixels.
VIEWPORT BASICS
THE DESKTOP VIEWPORT
The function of the viewport is to constrain the <html>
element, which is the uppermost containing block of your
site.
The <html> element takes 100% of the width of that
viewport.
The viewport has the width and height of the browser
window — on desktop.
VIEWPORT BASICS
THE MOBILE VIEWPORTS
The visual viewport is the part of the
page that’s currently shown on-
screen.
The CSS layout, especially percentual
widths, are calculated relative to the
layout viewport.
VIEWPORT META TAG
A meta viewport tag gives instructions on how to control the
page's dimensions and scaling.
VIEWPORT META TAG HISTORY
It was first implemented by Apple for the Safari/iPhone
browser, but has since been implemented for most of
mobile browsers.
VIEWPORT META TAG SYNTAX
<meta name="viewport" content="width=device­width, initial­scale=1">
VIEWPORT META TAG BASICS
default width=device-width
VIEWPORT META TAG PROPERTIES
Property Description
width Width of the viewport in pixels (or device-width). If width isn’t
set, it defaults to a desktop size (980px on mobile Safari).
height Height of the viewport in pixels (or device-height). Generally
you don’t need to worry about setting this property.
initial-
scale
(0 to 10.0) Multiplier that sets the scale of the page after its
initial display. Safe bet: if you need to set it, set it to 1.0.
Larger values = zoomed in, smaller values = zoomed out
VIEWPORT META TAG PROPERTIES
Property Description
minimum-
scale
(0 to 10.0) The minimum multiplier the user can “zoom out”
to. Defaults to 0.25 on mobile Safari.
maximum-
scale
(0 to 10.0) The minimum multiplier the user can “zoom in”
to. Defaults to 1.6 on mobile Safari.
user-
scalable
(yes/no) Whether to allow a user from scaling in/out
(zooming in/out). Default to “yes” on mobile Safari.
CSS @VIEWPORT
The @viewport rule consists of the @-keyword followed by a
block of property declarations describing the viewport.
@viewport {
    width: 980px;
    min­zoom: 0.25;
    max­zoom: 5;
}
CSS @VIEWPORT PROPERTIES
Property Description
width Sets both max and min-width. It's a shorthand descriptor.
auto | device-width | length | percentage
max-width auto | device-width | length | percentage
min-width auto | device-width | length | percentage
orientation Lock orientation or leave to auto.
auto; // auto | portrait | landscape
CSS @VIEWPORT PROPERTIES
Property Description
zoom 'zoom' equates to 'initial-scale' in meta tag.
auto | number | percentage
max-zoom Largest allowed zoom factor.
min-zoom Smallest allowed zoom factor.
user-zoom Equates to 'user-scalable' in meta tag.
fixed | zoom
SUMMARY
Use a meta viewport tag to control the width and scaling
of the browsers viewport.
Include width=device-width to match the screen's width
in device independent pixels.
Include initial-scale=1 to establish a 1:1 relationship
between CSS pixels and device independent pixels.
Ensure your page is accessible by not disabling user
scaling.
MEDIA QUERIES
MEDIA QUERIES
Media queries let the presentation of content be tailored to
a specific range of output devices without having to change
the content itself.
SYNTAX
A media query consists of a media type and zero or
more expressions that check for the conditions of
particular media features
<link rel="stylesheet" media="screen and (color)" href="ex.css">
@import url("ex.css") screen;
@media (min­width:500px) { … }
LOGICAL OPERATORS
and
or
not
only
@media (min­width:500px) and (orientation:landscape){ … }
@media (min­width:500px), (max­height:500px){ … }
@media not screen and (color){ … }
@media only screen and (color){ … }
MEDIA TYPES
Type Description
all Suitable for all devices.
braille Intended for braille tactile feedback devices.
embossed Intended for paged braille printers.
handheld Intended for handheld devices (typically small screen,
limited bandwidth).
print Intended for paged material and for documents viewed on
screen in print preview mode.
MEDIA TYPES
Type Description
projection Intended for projected presentations, for example
projectors.
screen Intended primarily for color computer screens.
speech Intended for speech synthesizers.
tty Intended for media using a fixed-pitch character grid (such
as teletypes, terminals, or portable devices with limited
display capabilities). 
tv Intended for television-type devices (low resolution, color,
limited-scrollability screens, sound available).
MEDIA FEATURES
Property Description
aspect-
ratio
is defined as the ratio of the value of the ‘width’ media
feature to the value of the ‘height’ media feature.
color describes the number of bits per color component of the
output device.
color-
index
describes the number of entries in the color lookup table of
the output device.
device-
aspect-
ratio
is defined as the ratio of the value of the ‘device-width’ media
feature to the value of the ‘device-height’ media feature.
MEDIA FEATURES
Property Description
device-
height
describes the height of the rendering surface of the output
device.
device-
width
describes the width of the rendering surface of the output
device.
grid is used to query whether the output device is grid or
bitmap.
height describes the height of the targeted display area of the
output device.
MEDIA FEATURES
Property Description
monochrome describes the number of bits per pixel in a monochrome
frame buffer.
orientation is ‘portrait’ when the value of the ‘height’ media feature
is greater than or equal to the value of the ‘width’ media
feature.
resolution describes the resolution of the output device, i.e. the
density of the pixels.
scan describes the scanning process of "tv" output devices.
width describes the width of the targeted display area of the
output device.
JS API
var widthQuery = window.matchMedia("(min­width: 600px)");
if (widthQuery.matches) {
    /* the viewport is at least 600 pixels wide */
} else {
    /* the viewport is less than 600 pixels wide */
}
JS API: MEDIAQUERYLIST
matches
Boolean whether the query matched or not.
media
Serialized media query list.
addListener
Adding event listener to a media query. Listener is
invoked when the media query's evaluated result
changes.
removeListener
Removing event listener from a media query.
SUMMARY
Media queries can be used to apply styles based on device
characteristics.
Use min-width over min-device-width to ensure the
broadest experience.
FLEXIBLE IMAGES AND
MEDIA
FLEXIBLE IMAGES
img {
    max­width: 100%;
}
FLEXIBLE VIDEO
video {
    max­width: 100%;
}
FLEXIBLE AUDIO
audio {
    width: 100%;
}
FLEXIBLE SVG
Modern browsers make svg flexible from the box. For old
browsers a padding 'workaround' can be used.
.svg­container {
  display: inline­block;
  position: relative;
  width: 100%;
  padding­bottom: 100%;
  vertical­align: middle;
  overflow: hidden;
}
.svg­content {
  display: inline­block;
  position: absolute;
  top: 0;
  left: 0;
}
FLEXIBLE CANVAS
If you resize the canvas, the drawn content is always erased.
You can either redraw the content after resizing.
var previousWidth = window.innerWidth;
var resizeCanvas = function(context){
  canvas.width = window.innerWidth;
  canvas.height = window.innerHeight;
  scale = window.innerWidth/previousWidth;
  context.scale(scale, scale);
  drawRectangle(context);
};
window.addEventListener('resize',
    resizeCanvas.bind(null, context),
    false);
ADAPTIVE IMAGES
SRCSET
A list of one or more strings separated by commas
indicating a set of possible image sources for the user
agent to use.
Getting images to scale efficiently across varying viewport
widths and screen resolutions.
SRCSET
WIDTH DESCRIPTOR PIXEL DENSITY DESCRIPTOR
<img
srcset="
    imgs/large.jpg 1920w,
    imgs/medium.jpg 960w,
    imgs/small.jpg 480w"
src="imgs/medium.jpg"
alt="Details."/>
<img
srcset="
    imgs/large.jpg 1x,
    imgs/medium.jpg 2x,
    imgs/small.jpg 3x"
src="imgs/medium.jpg"
alt="Details."/>
SIZES
A list of one or more strings separated by commas
indicating a set of source sizes.
Source size values specify the intended display size of the
image.
SIZES
<img
srcset="
    imgs/large.jpg 1920w,
    imgs/medium.jpg 960w,
    imgs/small.jpg 480w"
sizes="(min­width: 33em) 33em, 100vw"
src="imgs/medium.jpg"
alt="Details."/>
That says: is the viewport wider than 33em? This image will
be 33em wide. Otherwise, it’ll be 100vw.
PICTURE AND ART DIRECTION
srcset if you’re lazy, picture if you’re crazy.
Mat Marquis
ART DIRECTION
Tailoring image content to fit specific environments.
Sometimes this means cropping an image.
Other times, it can mean a different image altogether
that may have different proportions or may be changed
in other ways to communicate more effectively in a
layout.
PICTURE
<picture>
    <source media="(orientation: landscape)" srcset="landscape.jpg" />
    <img src="portrait.jpg" alt="A rad wolf." />
</picture>
PICTURE
<picture>
    <!­­ 16:9 crop ­­>
    <source
            media="(min­width: 36em)"
            srcset="imgs/large.jpg  1920w,
                    imgs/medium.jpg  960w,
                    imgs/small.jpg   480w" />
    <!­­ square crop ­­>
    <source
            srcset="imgs/large­square.jpg  822w,
                    imgs/medium­square.jpg 640w,
                    imgs/small­square.jpg  320w" />
    <img
            src="imgs/medium.jpg"
            alt="Details." />
</picture>
SOURCE TYPE
<picture>
    <source type="image/svg+xml" srcset="logo.svg" />
    <source type="image/webp" srcset="logo.webp" />
    <img src="logo.png" alt="RadWolf, Inc." />
</picture>
If the browser supports a source’s type, it will send that
source’s srcset to the img.
GRIDS
GRIDS LIBRARIES
Skeleton
Neat
Simple Grid
csswizardry-grids
Profound Grid
Griddle
Extra Strength Responsive Grids
Proportional Grids
Dead Simple Grid
Responsive Grid System
...
Most of CSS frameworks contain their own grid systems
GRIDS LIBRARIES BASICS
GRIDS LIBRARIES BASICS
.grid {
    margin­right: ­30px;
}
.grid:after {
    display: table;
    clear: both;
    content: '';
}
[class^='grid­col­'] {
    float: left;
    box­sizing: border­box;
    min­height: 1px;
    padding­right: 30px;
}
.grid­col­1­1 {
    width: 100%;
}
.grid­col­2­3, .grid­col­8­12 {
    width: 66.66%;
}
.grid­col­1­2, .grid­col­6­12 {
    width: 50%;
}
.grid­col­1­3, .grid­col­4­12 {
    width: 33.33%;
}
.grid­col­1­4, .grid­col­3­12 {
    width: 25%;
}
RESPONSIVE GRIDS
Extra small
devices
Phones (<768px)
Small
devices
Tablets (≥768px)
Medium
devices
Desktops (≥992px)
Large
devices
Desktops (≥1200px)
Grid
behavior
Horizontal at
all times
Collapsed to start, horizontal above
breakpoints
Container
width
None (auto) 750px 970px 1170px
Class
prefix
.col‐xs‐ .col‐sm‐ .col‐md‐ .col‐lg‐
FLEXBOX
FLEXBOX TERMINOLOGY
FLEXBOX BASICS
Flex container
Flex items
FLEXBOX BASICS
FLEX CONTAINER
display
defines a flex container.
flex-direction
establishes the main-axis.
flex-wrap
allows the items to wrap.
flex-flow
is a shorthand flex-direction and flex-wrap properties.
FLEXBOX BASICS
FLEX CONTAINER
justify-content
defines the alignment along the main axis.
align-items
defines the default behaviour for how flex items are laid
out along the cross axis on the current line.
align-content
aligns a flex container's lines within when there is extra
space in the cross-axis.
FLEXBOX BASICS
FLEX ITEMS
order
controls the order in which flex items appear in the flex
container.
flex-grow
defines the ability for a flex item to grow if necessary.
flex-shrink
defines the ability for a flex item to shrink if necessary.
FLEXBOX BASICS
FLEX ITEMS
flex-basis
defines the default size of an element before the
remaining space is distributed.
flex
is the shorthand for flex-grow, flex-shrink and flex-basis
combined.
align-self
allows the default alignment to be overridden for
individual flex items.
RESPONSIVE TABLES
SCALE
DESKTOP MOBILE
SCROLL TO THE RIGHT
DESKTOP MOBILE
CONTENT: ATTR(DATA-CONTENT)
DESKTOP MOBILE
ADVICES
USE RELATIVE UNITS
A key concept behind responsive design is fluidity and
proportionality as opposed to fixed width layouts.
DON’T USE RELATIVE UNITS
Don’t use relative units everywhere. Ask yourself a question:
Is this property depending on the viewport
width?
CHOOSE CORRECT BREAKPOINTS
Defining breakpoints based on specific devices, products,
brand names, or operating systems that are in use today
can result in a maintenance nightmare. 
The content itself should determine how the layout
adjusts to its container.
‘MOBILE’ FIRST
Use the simplest layout as a start point.
Forces You to Focus on Core Content and Functionality.
In most cases this approach will get less css styles
overrides.
DON’T USE MIN-DEVICE-WIDTH
creating queries based on *-device-width; is strongly
discouraged.
DON’T USE ABSOLUTE VALUES FOR
DEFINING VIEWPORT
USE CSS PREPROCESSORS
Use CSS preprocessors to define bundles
@phone = ~’320px’
PREVIEWING &
TESTING
EXTERNAL RESOURCES
Responsinator.com
displays as numerous devices
iOS Simulator
if you have a Mac. (After launching Xcode, go into
the Xcode menu and chooseOpen Developer Tool > iOS
Simulator)
Browserstack
for cross browser and device testing.
BROWSER DEVTOOLS
Chrome
DevTools Device Mode
Firefox
Responsive Design View
TEST ON REAL DEVICES
Nothing beats holding a device and touching a site.
How far do you need to reach to tap something?
How well does the device respond?
RESOURCES
https://developer.mozilla.org/en-
US/docs/Web_Development/Mobile/Responsive_design
http://alistapart.com/article/responsive-images-in-practice
https://html.spec.whatwg.org/multipage/embedded-
content.html#attr-picture-source-media
http://www.quirksmode.org/mobile/viewports.html
https://developers.google.com/web/fundamentals/layouts/in
hl=en
https://developer.mozilla.org/en-
US/docs/Mozilla/Mobile/Viewport_meta_tag
https://css-tricks.com/snippets/css/a-guide-to-flexbox

More Related Content

What's hot

Bootstrap 3
Bootstrap 3Bootstrap 3
Bootstrap 3Lanh Le
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design Mindy McAdams
 
Responsive web design ppt
Responsive web design pptResponsive web design ppt
Responsive web design pptNAWAZ KHAN
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introductionapnwebdev
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events WebStackAcademy
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basicsEliran Eliassy
 
ASP.NET Presentation
ASP.NET PresentationASP.NET Presentation
ASP.NET Presentationdimuthu22
 
Advanced Javascript
Advanced JavascriptAdvanced Javascript
Advanced JavascriptAdieu
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS Yaowaluck Promdee
 
Media queries A to Z
Media queries A to ZMedia queries A to Z
Media queries A to ZShameem Reza
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout Rachel Andrew
 
Introduction to SASS
Introduction to SASSIntroduction to SASS
Introduction to SASSJon Dean
 

What's hot (20)

Javascript basics
Javascript basicsJavascript basics
Javascript basics
 
Bootstrap 3
Bootstrap 3Bootstrap 3
Bootstrap 3
 
HTML and Responsive Design
HTML and Responsive Design HTML and Responsive Design
HTML and Responsive Design
 
Responsive web design ppt
Responsive web design pptResponsive web design ppt
Responsive web design ppt
 
1 03 - CSS Introduction
1 03 - CSS Introduction1 03 - CSS Introduction
1 03 - CSS Introduction
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events
 
Lab#9 graphic and color
Lab#9 graphic and colorLab#9 graphic and color
Lab#9 graphic and color
 
Rwd ppt
Rwd pptRwd ppt
Rwd ppt
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
CSS Best practice
CSS Best practiceCSS Best practice
CSS Best practice
 
ASP.NET Presentation
ASP.NET PresentationASP.NET Presentation
ASP.NET Presentation
 
Advanced Javascript
Advanced JavascriptAdvanced Javascript
Advanced Javascript
 
Tables and forms with HTML, CSS
Tables and forms with HTML, CSS  Tables and forms with HTML, CSS
Tables and forms with HTML, CSS
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
 
Advanced Cascading Style Sheets
Advanced Cascading Style SheetsAdvanced Cascading Style Sheets
Advanced Cascading Style Sheets
 
Media queries A to Z
Media queries A to ZMedia queries A to Z
Media queries A to Z
 
Css3
Css3Css3
Css3
 
CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout CSS Day: CSS Grid Layout
CSS Day: CSS Grid Layout
 
Java script
Java scriptJava script
Java script
 
Introduction to SASS
Introduction to SASSIntroduction to SASS
Introduction to SASS
 

Similar to Responsive Web Design

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJason Harwig
 
Responsive Web design _2013
Responsive Web design _2013 Responsive Web design _2013
Responsive Web design _2013 Suresh B
 
responsive web design 1_oct_2013
responsive web design  1_oct_2013 responsive web design  1_oct_2013
responsive web design 1_oct_2013 Suresh B
 
responsive web design
responsive web designresponsive web design
responsive web designSuresh B
 
Intro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresIntro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresAndreas Bovens
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignShawn Calvert
 
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
 
Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011Patrick Lauke
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobileDee Sadler
 
The specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopThe specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopbetabeers
 
Going Responsive with WordPress
Going Responsive with WordPressGoing Responsive with WordPress
Going Responsive with WordPressJames Cryer
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive WebsitesJoe Seifi
 
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...Patrick Lauke
 
Responsive design: techniques and tricks to prepare your websites for the mul...
Responsive design: techniques and tricks to prepare your websites for the mul...Responsive design: techniques and tricks to prepare your websites for the mul...
Responsive design: techniques and tricks to prepare your websites for the mul...Andreas Bovens
 
Designing for Inclusion with Media Queries
Designing for Inclusion with Media QueriesDesigning for Inclusion with Media Queries
Designing for Inclusion with Media QueriesEric Bailey
 
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...Patrick Lauke
 
Designing for Inclusion with Media Queries: Boston CSS
Designing for Inclusion with Media Queries: Boston CSSDesigning for Inclusion with Media Queries: Boston CSS
Designing for Inclusion with Media Queries: Boston CSSEric Bailey
 
Idiot's Guide to viewport and pixel
Idiot's Guide to viewport and pixelIdiot's Guide to viewport and pixel
Idiot's Guide to viewport and pixelNathan Campos
 

Similar to Responsive Web Design (20)

Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Responsive Web design _2013
Responsive Web design _2013 Responsive Web design _2013
Responsive Web design _2013
 
responsive web design 1_oct_2013
responsive web design  1_oct_2013 responsive web design  1_oct_2013
responsive web design 1_oct_2013
 
responsive web design
responsive web designresponsive web design
responsive web design
 
Intro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS featuresIntro to @viewport & other new Responsive Web Design CSS features
Intro to @viewport & other new Responsive Web Design CSS features
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
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
 
Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011Adaptive layouts - standards>next Manchester 23.03.2011
Adaptive layouts - standards>next Manchester 23.03.2011
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobile
 
The specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktopThe specs behind the sex, mobile-friendly layout beyond the desktop
The specs behind the sex, mobile-friendly layout beyond the desktop
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Going Responsive with WordPress
Going Responsive with WordPressGoing Responsive with WordPress
Going Responsive with WordPress
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
 
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
Adapt and respond - mobile-friendly layouts beyond the desktop - standards>ne...
 
Responsive design: techniques and tricks to prepare your websites for the mul...
Responsive design: techniques and tricks to prepare your websites for the mul...Responsive design: techniques and tricks to prepare your websites for the mul...
Responsive design: techniques and tricks to prepare your websites for the mul...
 
Designing for Inclusion with Media Queries
Designing for Inclusion with Media QueriesDesigning for Inclusion with Media Queries
Designing for Inclusion with Media Queries
 
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
Смартфоны и планшетники - mobile-friendly веб-разработка помимо десктопа - RI...
 
Designing for Inclusion with Media Queries: Boston CSS
Designing for Inclusion with Media Queries: Boston CSSDesigning for Inclusion with Media Queries: Boston CSS
Designing for Inclusion with Media Queries: Boston CSS
 
Lab#13 responsive web
Lab#13 responsive webLab#13 responsive web
Lab#13 responsive web
 
Idiot's Guide to viewport and pixel
Idiot's Guide to viewport and pixelIdiot's Guide to viewport and pixel
Idiot's Guide to viewport and pixel
 

Recently uploaded

Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Celine George
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsManeerUddin
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management systemChristalin Nelson
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptxiammrhaywood
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONHumphrey A Beña
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 

Recently uploaded (20)

Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
Incoming and Outgoing Shipments in 3 STEPS Using Odoo 17
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Food processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture honsFood processing presentation for bsc agriculture hons
Food processing presentation for bsc agriculture hons
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Concurrency Control in Database Management system
Concurrency Control in Database Management systemConcurrency Control in Database Management system
Concurrency Control in Database Management system
 
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptxAUDIENCE THEORY -CULTIVATION THEORY -  GERBNER.pptx
AUDIENCE THEORY -CULTIVATION THEORY - GERBNER.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATIONTHEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
THEORIES OF ORGANIZATION-PUBLIC ADMINISTRATION
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptxYOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
YOUVE GOT EMAIL_FINALS_EL_DORADO_2024.pptx
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 

Responsive Web Design