SlideShare une entreprise Scribd logo
1  sur  85
Télécharger pour lire hors ligne
Retro Responsive
From Fixed-width to Flexible
in Fifty-five Minutes
p Rachel chartoff
Web designer
Engineering IT shared services
	
  
Rchartoff
ravelry.com
2013
Edible Book Festival
2013
Edible Book Festival





“As I Lay Frying”
Engineering ITSHARED SERVICES
Josh Potts
Laura Hayden
Rachel Chartoff
Amy Adams
Amy Hurst
David Kees
YOU?
responsive design IS:
“Design for the ebb and flow of things.”
– Ethan Marcotte
² Device independence
² Visual flexibility
² Performance
A
responsive design
IS design for
_______.
REACHYOUR AUDIENCE
American Adults (Jan 2014)
² 90% have a cell phone
² 58% have a smartphone
² 42% own a tablet computer
34% OF cell internet users go online
mostly using their phones
Source: pewinternet.org/fact-sheets/mobile-technology-fact-sheet/
(updated regularly)
A
A
A
A
A
AWWW!
PHABLET
PHashion challenge?
si.wsj.net	
   www.abricocotier.fr
	
  
SPACE IS NOTTHERETO BE FILLED
² Viewable angle
² Line length
² 960px still standard
HelpfulTools
p
Firefox:
Responsive Design View
Tools > Web Developer > Responsive Design View
CHROME: DEVTOOL RULERS
² View > Developer > Developer Tools
² Resize window to view dimensions
² Subscription-based tool
² Interact with (almost) any browser
² Simulate mobile devices
² browserstack.com
Getting Started
i
an existing site
²  Header and footer
²  Header navigation bar
²  960-pixel container
²  Horizontally centered
G
A
container
container
header
container
header
content
container
header
content
footer
A FEW HTML ADDITIONS
Y
ADD A VIEWPORTMETATAG
<meta name="viewport"
content="width=device-width, initial-scale=1">
² sizes content to the device’s viewport width
² ensures layout is not zoomed out on load
² Use both rules to ensure maximum compatibility
ADD A VIEWPORTCSS RULE,TOO
@viewport, @-ms-viewport {
zoom: 1.0;
width: extend-to-zoom;
}
SAVE US FROM compatibilityMODE
<meta http-equiv="X-UA-Compatible"
content="IE=edge">
² Ensures content is displayed with the most recent
IE rendering engine
² Unless it’s an “intranet”
² Google “Compatibility view and
‘Smart Defaults’” for more info
p
MEDIA QUERIES
w
Uh oh, browser support
² No media query support in <IE 8, Safari 2,
Firefox 1,2
² Include css3-mediaqueries.js
by Wouter van der Graff
² code.google.com/p/css3-mediaqueries-js/
SMALLESTOR LARGESTsizes FIRST?
² Putting smallest sizes first utilizes the cascade,
gets around IE8 issues
² I write largest to smallest, then re-arrange
before launch
MULTIPLE CSS FILES?
Your choice. I separate them for side-by-side viewing.
<link rel="stylesheet" type="text/css" href=“/style.css">
<link rel="stylesheet" type="text/css" href=“/responsive.css">
BASIC MEDIA QUERYFoRMAT
#container { width: 960px; }
@media only screen and (max-width: 960px ) {
#container { width: 100%; }
}
	
  
style.css	
  
responsive.css	
  
STARTWITH large containers
²  Change px or em widths to percentages
²  Remove floats
²  Check padding – may not need as much
Responsive containers
@media only screen and ( max-width: 960px ) {
#container, #header, #content, #footer {
width: 100%;
float: none;
padding: 0px;
}
}
	
  
responsive.css	
  
BASIC LAYOUT
SAME LAYOUT,
SIZED IN
PERCENTAGES
803 px
Size Down until itbreaks down
²  When layout breaks, note pixel width
²  Make a new @media query with rules for
that max-width
REMOVE
FLOATS,
Stack nav
ITEMS
672 px
Alter font
sizes
320 px
HTML Source Order
²  Put important content first so it stacks
at the top on smaller screens
²  Slide-out navigation can be anywhere
in the source
A
Examine padding
²  Use less vertical padding to save mobile
users from scrolling
²  Don’t remove too much space
²  Keep targets big
Responsivetypography
•  More than just resizing the container and
letting text reflow
•  Use resizable units: em or rem, not px
•  Keep line height flexible too – and specify it
TRYusing REM UNITS
•  REM = Relative EM
•  Sizes text from the context of the root
element (html), not the container
•  Avoids extra math
•  Not supported by <IE8, so use px as backup
Sizing in PX and rem
@media only screen and ( max-width: 500px ) {
body { font-size: 62.5%; }
#site-name h1 {
font-size: 24px; font-size: 2.4rem;
line-height: 24px; line-height: 2.4rem;
}
}
	
  
responsive.css	
  
RESPONSIVE NAVIGATION
q
Responsive nav CHECKLIST
²  Offer same options as full-size site
²  Use established design patterns
²  There is no “hover”
Stacked
Stacked in
columns
Code and examples:
www.hongkiat.com/blog/responsive-web-nav/
HAMBURGER
SLIDE-OUT:
FROM SIDE
HAMBURGER
SLIDE-OUT:
FROM TOP
SLICKNAV
² Keyboard Accessible
² Degrades gracefully
without JavaScript
² Creates ARIA
compliant menu
RESPONSIVE IMAGES
b
Please,think ofthe BANDWIDTH.
²  display: none hides the problem
²  Browsers load all images anyway
²  Detect smaller screens, load smaller images
HTML5 PICTURETAG - SOMEDAY...
²  Draft specification
²  Not supported, but awesome
<picture>
<source srcset="mobile.png, mobile-hd.png 2x">
    <source media="(min-width: 480px)" srcset="tablet.png, tablet-hd.png 2x">
    <source media="(min-width: 1024px)" srcset="desktop.png, desktop-hd.png 2x">
    <img src="tablet.png" alt="A photo of London by night">
</picture>
	
  
INTHE MEANTIME, choose...
²  HiSRC – jQuery plugin
²  Adaptive Images – server-side PHP
²  Sencha.io Src – third-party processor
²  Picturefill - JavaScript
Z
PICTUREFILL
²  Serves up images based on screen size
²  A little extra markup and a tiny JavaScript
²  Includes support for IE8 and <noscript>
²  Can be called programmatically
²  github.com/scottjehl/picturefill
N
PICTUREFILL EXAMPLE
<span	
  data-­‐picture	
  data-­‐alt="Jell-­‐O">	
  
	
  <span	
  data-­‐src="images/retrofood-­‐feature-­‐500.jpg"></span>	
  
	
  <span	
  data-­‐src="images/retrofood-­‐feature-­‐790.jpg"	
  data-­‐media="(min-­‐width:	
  500px)"></span>	
  
	
  <span	
  data-­‐src="images/retrofood-­‐feature.jpg"	
  data-­‐media="(min-­‐width:	
  790px)"></span>	
  
	
  
	
  <!-­‐-­‐	
  Fallback	
  content	
  for	
  non-­‐JS	
  browsers.	
  Same	
  img	
  src	
  as	
  the	
  iniMal	
  img.	
  -­‐-­‐>	
  
	
  <noscript><img	
  src="images/retrofood-­‐feature-­‐500.jpg"	
  alt="Jell-­‐O"></noscript>	
  
</span>	
  
N<script>	
  
	
  //	
  Picture	
  element	
  HTML	
  shim|v	
  it	
  for	
  old	
  IE	
  (pairs	
  with	
  Picturefill.js)	
  
	
   	
  document.createElement(	
  "picture"	
  );	
  
</script>	
  
<script	
  async="true"	
  src="scripts/picturefill.js"></script>	
  
IMAGE SIZE COMPARISON
264K
79K179K
PICTUREFILL EXAMPLE
N<span	
  data-­‐picture	
  data-­‐alt="Jell-­‐O">	
  
	
  <span	
  data-­‐src="images/retrofood-­‐feature-­‐500.jpg"></span>	
  
	
  <span	
  data-­‐src="images/retrofood-­‐feature-­‐790.jpg"	
  data-­‐media="(min-­‐width:	
  500px)"></span>	
  
	
  <span	
  data-­‐src="images/retrofood-­‐feature.jpg"	
  data-­‐media="(min-­‐width:	
  790px)"></span>	
  
	
  
	
  <!-­‐-­‐	
  Fallback	
  content	
  for	
  non-­‐JS	
  browsers.	
  Same	
  img	
  src	
  as	
  the	
  iniMal	
  img.	
  -­‐-­‐>	
  
	
  <noscript><img	
  src="images/retrofood-­‐feature-­‐500.jpg"	
  alt="Jell-­‐O"></noscript>	
  
</span>	
  
@media only screen and ( max-width: 960px ) {
.photo-feature img { width: 100%; height: auto; }
}
	
  
responsive.css	
  
960 px image
790 px image
500 px image
FINAL STEP:TEST!
F
CROSS-BROWSERTESTING IS IMPORTANT.
Basic usertesting
²  Ask someone else to use it
²  Load it over a slow connection
²  Try lots of devices
²  Utilize testing software (BrowserStack.com)
²  Cheap and worth it!
GO BUILD SOMETHING AWESOME.
THANKYOU!
²  @rachelchartoff
²  slideshare.net/rachelchartoff
²  rachelchartoff@gmail.com

Contenu connexe

En vedette

Long-term effect of physical activity on energy balance and body composition
Long-term effect of physical activity on energy balance and body compositionLong-term effect of physical activity on energy balance and body composition
Long-term effect of physical activity on energy balance and body compositionjuan pedro gracia mendez
 
Strategi adaptasi-fisiologi-dan-perilaku-mamal-akuatik
Strategi adaptasi-fisiologi-dan-perilaku-mamal-akuatikStrategi adaptasi-fisiologi-dan-perilaku-mamal-akuatik
Strategi adaptasi-fisiologi-dan-perilaku-mamal-akuatiknivitalindasarii
 
Mobil 1 Center Kazakhstan
Mobil 1 Center KazakhstanMobil 1 Center Kazakhstan
Mobil 1 Center Kazakhstankulanoil
 
Create new kinds of multiuser experiences using hydna and Unity
Create new kinds of multiuser experiences using hydna and UnityCreate new kinds of multiuser experiences using hydna and Unity
Create new kinds of multiuser experiences using hydna and UnityJohan Dahlberg
 

En vedette (11)

نظرات قرآنية حول سورة الكهف
نظرات قرآنية حول سورة الكهفنظرات قرآنية حول سورة الكهف
نظرات قرآنية حول سورة الكهف
 
2
22
2
 
Katarzyna bieniek
Katarzyna bieniekKatarzyna bieniek
Katarzyna bieniek
 
1
11
1
 
Long-term effect of physical activity on energy balance and body composition
Long-term effect of physical activity on energy balance and body compositionLong-term effect of physical activity on energy balance and body composition
Long-term effect of physical activity on energy balance and body composition
 
Strategi adaptasi-fisiologi-dan-perilaku-mamal-akuatik
Strategi adaptasi-fisiologi-dan-perilaku-mamal-akuatikStrategi adaptasi-fisiologi-dan-perilaku-mamal-akuatik
Strategi adaptasi-fisiologi-dan-perilaku-mamal-akuatik
 
Mobil 1 Center Kazakhstan
Mobil 1 Center KazakhstanMobil 1 Center Kazakhstan
Mobil 1 Center Kazakhstan
 
Greece presentation
Greece presentationGreece presentation
Greece presentation
 
Create new kinds of multiuser experiences using hydna and Unity
Create new kinds of multiuser experiences using hydna and UnityCreate new kinds of multiuser experiences using hydna and Unity
Create new kinds of multiuser experiences using hydna and Unity
 
3
33
3
 
What is coaching
What is coachingWhat is coaching
What is coaching
 

Similaire à Retro Responsive: From Fixed-Width to Flexible in 55 Minutes

An Introduction to Responsive Design
An Introduction to Responsive DesignAn Introduction to Responsive Design
An Introduction to Responsive DesignValtech UK
 
Html 5 mobile - nitty gritty
Html 5 mobile - nitty grittyHtml 5 mobile - nitty gritty
Html 5 mobile - nitty grittyMario Noble
 
Responsive Web Design e a Ubiquidade da Web
Responsive Web Design e a Ubiquidade da WebResponsive Web Design e a Ubiquidade da Web
Responsive Web Design e a Ubiquidade da WebEduardo Shiota Yasuda
 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Webmikeleeme
 
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
 
Mobile Web Development
Mobile Web DevelopmentMobile Web Development
Mobile Web DevelopmentJonathan Snook
 
Responsive UX - One size fits all @BigDesign conference #BigD12
Responsive UX - One size fits all   @BigDesign conference #BigD12Responsive UX - One size fits all   @BigDesign conference #BigD12
Responsive UX - One size fits all @BigDesign conference #BigD12touchtitans
 
Responsive web design
Responsive web designResponsive web design
Responsive web designBen MacNeill
 
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...Frédéric Harper
 
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
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web DesignMike Wilcox
 
Cross Device UI Designing
Cross Device UI DesigningCross Device UI Designing
Cross Device UI DesigningDeepu S Nath
 
Responsive Web Design in iMIS (NiUG Austin 2015)
Responsive Web Design in iMIS (NiUG Austin 2015)Responsive Web Design in iMIS (NiUG Austin 2015)
Responsive Web Design in iMIS (NiUG Austin 2015)Andrea Robertson
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobileDee Sadler
 
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
 
Stocktwits & Responsive Web Design, social network meets flexible framework
Stocktwits & Responsive Web Design, social network meets flexible frameworkStocktwits & Responsive Web Design, social network meets flexible framework
Stocktwits & Responsive Web Design, social network meets flexible frameworkJohn Strott
 
Responsive Web Design for Drupal, CMS Expo
Responsive Web Design for Drupal, CMS ExpoResponsive Web Design for Drupal, CMS Expo
Responsive Web Design for Drupal, CMS ExpoEmma Jane Hogbin Westby
 
HTML5 apps for iOS (and probably beyond)
HTML5 apps for iOS (and probably beyond)HTML5 apps for iOS (and probably beyond)
HTML5 apps for iOS (and probably beyond)Andi Farr
 

Similaire à Retro Responsive: From Fixed-Width to Flexible in 55 Minutes (20)

An Introduction to Responsive Design
An Introduction to Responsive DesignAn Introduction to Responsive Design
An Introduction to Responsive Design
 
Html 5 mobile - nitty gritty
Html 5 mobile - nitty grittyHtml 5 mobile - nitty gritty
Html 5 mobile - nitty gritty
 
Responsive Web Design e a Ubiquidade da Web
Responsive Web Design e a Ubiquidade da WebResponsive Web Design e a Ubiquidade da Web
Responsive Web Design e a Ubiquidade da Web
 
Pinkoi Mobile Web
Pinkoi Mobile WebPinkoi Mobile Web
Pinkoi Mobile Web
 
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
 
Mobile Web Development
Mobile Web DevelopmentMobile Web Development
Mobile Web Development
 
Responsive UX - One size fits all @BigDesign conference #BigD12
Responsive UX - One size fits all   @BigDesign conference #BigD12Responsive UX - One size fits all   @BigDesign conference #BigD12
Responsive UX - One size fits all @BigDesign conference #BigD12
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015...
 
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
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Great Responsive-ability Web Design
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
 
Responsive design
Responsive designResponsive design
Responsive design
 
Cross Device UI Designing
Cross Device UI DesigningCross Device UI Designing
Cross Device UI Designing
 
Responsive Web Design in iMIS (NiUG Austin 2015)
Responsive Web Design in iMIS (NiUG Austin 2015)Responsive Web Design in iMIS (NiUG Austin 2015)
Responsive Web Design in iMIS (NiUG Austin 2015)
 
Designing for mobile
Designing for mobileDesigning for mobile
Designing for mobile
 
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...
 
Stocktwits & Responsive Web Design, social network meets flexible framework
Stocktwits & Responsive Web Design, social network meets flexible frameworkStocktwits & Responsive Web Design, social network meets flexible framework
Stocktwits & Responsive Web Design, social network meets flexible framework
 
Responsive Web Design for Drupal, CMS Expo
Responsive Web Design for Drupal, CMS ExpoResponsive Web Design for Drupal, CMS Expo
Responsive Web Design for Drupal, CMS Expo
 
HTML5 apps for iOS (and probably beyond)
HTML5 apps for iOS (and probably beyond)HTML5 apps for iOS (and probably beyond)
HTML5 apps for iOS (and probably beyond)
 

Dernier

The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024Ilham Brata
 
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...amitlee9823
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...amitlee9823
 
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...amitlee9823
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...amitlee9823
 
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Availabledollysharma2066
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...SUHANI PANDEY
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Websitemark11275
 
Hingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRL
Hingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRLHingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRL
Hingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRLNitya salvi
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdftbatkhuu1
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...amitlee9823
 
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.Nitya salvi
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyNitya salvi
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...karishmasinghjnh
 

Dernier (20)

The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024The hottest UI and UX Design Trends 2024
The hottest UI and UX Design Trends 2024
 
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
 
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men  🔝Bokaro🔝   Escorts S...
➥🔝 7737669865 🔝▻ Bokaro Call-girls in Women Seeking Men 🔝Bokaro🔝 Escorts S...
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
➥🔝 7737669865 🔝▻ jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
 
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
How to Build a Simple Shopify Website
How to Build a Simple Shopify WebsiteHow to Build a Simple Shopify Website
How to Build a Simple Shopify Website
 
Hingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRL
Hingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRLHingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRL
Hingoli ❤CALL GIRL 8617370543 ❤CALL GIRLS IN Hingoli ESCORT SERVICE❤CALL GIRL
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 Just📲 Call Ruhi Call Girl Agen...
 

Retro Responsive: From Fixed-Width to Flexible in 55 Minutes