SlideShare a Scribd company logo
1 of 155
Iopsy
Turvy
Design   Adapting your design process
                   for adaptive design

                                               @richquick
                                             Background texture thanks to ~Essence of a Dream~
                 http://www.flickr.com/photos/30886604@N04/3564381283/sizes/l/in/photostream/
Iopsy
Turvy
Design   Adapting your design process
                   for adaptive design



                                             Background texture thanks to ~Essence of a Dream~
                 http://www.flickr.com/photos/30886604@N04/3564381283/sizes/l/in/photostream/
Who am I?
Rich Quick
Rich Quick




(before you ask)
Yes
(it is my real name)
Here’s my passport to prove it
Web
Designer
Front end
Developer
12
Years
Just started working for
Very traditional site
Very traditional site

Designed for desktop
Very traditional site

Designed for desktop

Traditional design process
Very traditional site

Designed for desktop

Traditional design process

Looks “so so”
The

Traditional
Design
Process
The
The Traditional Design Process
The Traditional Design Process


       1



   Big
    Fat
Cheque
   http://www.flickr.com/photos/nznationalparty/6078616366/sizes/z/in/photostream/
2

                                                                                        Have a latte



http://www.designfloat.com/blog/2010/07/21/latte-art-charming-coffee-designs-part-ii/
Do some wireframes   3
Do some wireframes                                                          3   (maybe)




http://www.flickr.com/photos/rohdesign/3307873748/sizes/m/in/photostream/
Do some wireframes   3
Do some wireframes   3
Do some wireframes   3
Do some wireframes   3
4


Give to the
(ultra cool)
  designer
Who does some Photoshop magic
5

Then the client / your boss sees it
5

Then the client / your boss sees it
                       and loves it   1 st
                                      TIME
5

Then the client / your boss sees it
                       and loves it   91st
                                      TIME
6

Next, the design gets handed over to this guy
6

   The geek* / techie* / HTML monkey*
* delete as applicable
He* does a load of geekytechienerdy stuff
     * It a he, obviously.
7


   Big
    Fat
  Final
Cheque
1     Big fat deposit cheque
2       Have a latte
    3     Do some wireframes
4       Photoshop comps
    5     Sign off
6       HTML Monkey does voodoo
    7     Big fat final cheque
1     Big fat deposit cheque
2       Have a latte
    3     Do some wireframes
4       Photoshop comps
    5     Sign off
6       HTML Monkey does voodoo
    7     Big fat final cheque
Traditional


   Print


 Process
Big fat deposit cheque        1

         Have a latte cappuccino      2

              Do some wireframes          3

      Photoshop Indesign comps        4

                           Sign off       5

HTML Monkey Printer does voodoo       6

               Big fat final cheque       7
1   2       3       5




        4       6       7
WHY?
CHAN
GE
DONʼT MAKE ME
CHANGE
THE MORE YOU
ASK PEOPLE TO
CHANGE
THE LESS OF THEM

WILL
A web developer (you guys)
Go to the gym twice a day,
eat celery,
run 60 miles a week
Yeah,
Right!
Try a smaller burger, maybe?
var ageOfWebDesignProcess; // in years

if (webDesignProcess == printDesignProcess) {
 echo(‘wtf!’);
 ageOfWebDesignProcess = 572;
}
PEOPLE HATE CHANGE


THAT MUCH    }
Web Designers
Get asked to change
more than most
First I learnt tables.. then that was wrong
Then I learnt Flash.. then that wasnʼt cool
Then I learnt CSS..
Then it was accessibility..
Then it was XHTML..
Then it was HTML5..
Now what?!!
Adaptive Web Design*
* or responsive, depending on what book you read
Aww crap!
can I be
  bothered?
some good
  news
some good
  news
itʼs really
   easy
there’s just


       1       thing
          you need to learn
Media Queries

@media screen and (min-width:1025px) {

 /* your CSS here */
}
That’s it (pretty much)
At least from a
technical point of view
From a
technical point of view
 Learn 1 line of code
 and you know how to do
 adaptive design
From a
technical point of view
 Learn 1 line of code
 and you know how to do
 adaptive design
From a
design point of view

 It doesnʼt need to be
 much harder
There’s no wrong or right
way to do adaptive design

 But hereʼs how I do it...
Remember the cutlery
in Titanic?
No?
Just start from the outside,
    Jack, and work in
Just start from the outside,
    Jack, and work in
Start in
the “traditional” way
Cheque,
       latte,
wireframes,
Photoshop
Then ask “what if”?
“What if it was
a bit thinner?”
“What if it was
 thinner still?”
When youʼre designing


Start from the outside


    and work in
When youʼre designing


Start from the outside


    and work in
When coding


Start from the inside

     and work out
It’s way easier


and there’s a hidden


       IE gift
Code
thinnest
first
Then
    code
outwards
Gracefully degrade your design

Progressively enhance your code
   A word about IE
IE <8 doesn’t support @media

Use conditional comments
or javascript (modernizr.js, respond.js, css3-media-queries.js)

                  http://code.google.com/p/css3-mediaqueries-js/
                  https://github.com/scottjehl/Respond
Learn to let go

       Safari, Chrome, Firefox,
       Opera, your fridge


       IE
The IE
Gift
remember
         1
    If you   thing
Remember
     This
            1
Adaptive
Web Design
       is...
               1
Really,
 really,
simple
           1
There’s just 1 thing to learn

     @media screen and (min-width:1025px) {
     
 /* your CSS here */
     }
That’s it!

@media screen and (min-width:1025px) {

 /* your CSS here */
}
1 line

@media screen and (min-width:1025px) {

 /* your CSS here */
}
A
Challenge
A (really easy)
Challenge
Make your next
website adaptive
Make your next
       /
website adaptive
      a bit
Why?
As Patrick
mentioned


                              Image courtesy of Jeremy Keith / @adactio
   http://www.flickr.com/photos/adactio/39958802/sizes/z/in/photostream/
A little bit of
CSS
is better than
NONE
A little bit of
RESPONIVENESS
is better than
NONE
Here’s
 how
Fixed-width
                                        Layout

http://frontrowconf.com/speakers/
Horizontal
Scrolling
and on
mobile
<div class="columns">
  <section id="content" class="main">
    ...
  </section>
  <aside id="widgets">
    ...
  </aside>
</div>

                                        there’s some
                                          HTML
.columns{
  padding-top:70px;    and some
}

#content{
  float:left;
                        CSS
  width:595px;
  margin: 0 25px;
}

#widgets{
  float:right;
  width:275px;
  margin-right:18px;
}
to make your site adaptive
just add media queries
.container{
width:940px;
}                take the
#content {
float: left;
width: 595px;
                 CSS
}               that does
#widgets{
float:right;
width:275px;
                layout
}
Pull it out
plonk it at the end
@media screen and (min-width:970px) {        and
.container{
width:940px;
}                                       whack it
#content {
float: left;
                                              in a
width: 595px;
}                                         media
#widgets{
float:right;
width:275px;
}
                                          query
}
ta da!
it really is
Scarily
simple
It is just 1 line of code

  @media screen and (min-width:1025px) {
  
 /* your CSS here */
  }
A few little


Tricks
Some stuff for iPhones (mainly)

      <meta name="viewport" content="width=500" />
Viewport

<meta name="viewport" content="width=500" />
iPhones adjust text size
iPhones adjust text size

body {
  -webkit-text-size-adjust: none;
}
HTML5 form fields

<input   type="text" name="name" />
<input   type="telephone" name="phone" />
<input   type="email" name="email" />
<input   type="search" name="search" />
<input   type="url" name="website" />
Why bother?

<input   type="text" name="name" />
<input   type="telephone" name="phone" />
<input   type="email" name="email" />
<input   type="search" name="search" />
<input   type="url" name="website" />
Why bother?

   Because it’s there

<input   type="text" name="name" />
<input   type="tel" name="phone" />
<input   type="email" name="email" />
<input   type="search" name="search" />
<input   type="url" name="website" />
Why bother?

Because it’s there
phones can change the keyboard


<input type="email" name="email" />
support in “older browsers”*


     <input type="email" name="email" />




                                       * cough - IE - cough
treated like type="text"


  <input type="text" name="email" />
Safari changes it

-webkit-appearance: textfield;
responsive images
hardboil for an easier life
hardboil for an easier life
TO
SUM UP
1.
     It’s
stupidly
   easy
2. Gracefully
degrade your
      designs
3. Progressively
enhance your
code
4. It’s just 1 line of
               code!
5. Have a latte
1. It’s mind-numbingly easy
2. Gracefully degrade your designs
3. Progressively enhance your code
4. It’s just 1 line of code
5. Latte
jQuery
Books
  Adaptive Web Design
  Aaron Gustafson

  Responsive Web Design
  Ethan Marcote
Thanks
      Rich Quick
      @richquick
rich@richquick.tv

More Related Content

What's hot

[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
Christopher Schmitt
 
Responsive Design is Hard/Easy! Be Afraid/Don't Worry!
Responsive Design is Hard/Easy! Be Afraid/Don't Worry!Responsive Design is Hard/Easy! Be Afraid/Don't Worry!
Responsive Design is Hard/Easy! Be Afraid/Don't Worry!
Dan Mall
 
JavaScript For People Who Don't Code
JavaScript For People Who Don't CodeJavaScript For People Who Don't Code
JavaScript For People Who Don't Code
Christopher Schmitt
 
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
Jason Grigsby
 
Twitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad ideaTwitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad idea
Jason Lotito
 

What's hot (20)

Atomic Design - BDConf Nashville, 2013
Atomic Design - BDConf Nashville, 2013Atomic Design - BDConf Nashville, 2013
Atomic Design - BDConf Nashville, 2013
 
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
[HEWEBAR 2012] Beyond Desktop Browsing (HTML5)
 
So…What Do I Make? (Dan Mall)
So…What Do I Make? (Dan Mall)So…What Do I Make? (Dan Mall)
So…What Do I Make? (Dan Mall)
 
Use atomic design ftw
Use atomic design ftwUse atomic design ftw
Use atomic design ftw
 
MOBILE SEO - O CZYM MUSISZ PAMIĘTAĆ, Łukasz Żelezny
MOBILE SEO - O CZYM MUSISZ PAMIĘTAĆ,  Łukasz ŻeleznyMOBILE SEO - O CZYM MUSISZ PAMIĘTAĆ,  Łukasz Żelezny
MOBILE SEO - O CZYM MUSISZ PAMIĘTAĆ, Łukasz Żelezny
 
Object Oriented CSS
Object Oriented CSSObject Oriented CSS
Object Oriented CSS
 
Http _css-tricks
Http  _css-tricksHttp  _css-tricks
Http _css-tricks
 
Wordpress Guide
Wordpress GuideWordpress Guide
Wordpress Guide
 
Brad frost: Atomic design (Webdagene 2014)
Brad frost: Atomic design (Webdagene 2014)Brad frost: Atomic design (Webdagene 2014)
Brad frost: Atomic design (Webdagene 2014)
 
[edUi] HTML5 Workshop
[edUi] HTML5 Workshop[edUi] HTML5 Workshop
[edUi] HTML5 Workshop
 
Responsive Design Tools & Resources
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
 
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using BootstrapStop reinventing the wheel: Build Responsive Websites Using Bootstrap
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
 
Responsive Design is Hard/Easy! Be Afraid/Don't Worry!
Responsive Design is Hard/Easy! Be Afraid/Don't Worry!Responsive Design is Hard/Easy! Be Afraid/Don't Worry!
Responsive Design is Hard/Easy! Be Afraid/Don't Worry!
 
JavaScript For People Who Don't Code
JavaScript For People Who Don't CodeJavaScript For People Who Don't Code
JavaScript For People Who Don't Code
 
Responsive Design Workflow
Responsive Design WorkflowResponsive Design Workflow
Responsive Design Workflow
 
Atomic design
Atomic designAtomic design
Atomic 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
 
How to Grow Your Audience Through Accessibility
How to Grow Your Audience Through AccessibilityHow to Grow Your Audience Through Accessibility
How to Grow Your Audience Through Accessibility
 
Twitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad ideaTwitter Bootstrap, or why being a PHP Developer is a bad idea
Twitter Bootstrap, or why being a PHP Developer is a bad idea
 
Web guide
Web guideWeb guide
Web guide
 

Similar to Topsy Turvy Design

FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web Design
Frédéric Harper
 

Similar to Topsy Turvy Design (20)

Topsy Turvy Design: Adapting your design process for adaptive layout
Topsy Turvy Design: Adapting your design process for adaptive layoutTopsy Turvy Design: Adapting your design process for adaptive layout
Topsy Turvy Design: Adapting your design process for adaptive layout
 
Shifting Gears
Shifting GearsShifting Gears
Shifting Gears
 
The web standards gentleman: a matter of (evolving) standards)
The web standards gentleman: a matter of (evolving) standards)The web standards gentleman: a matter of (evolving) standards)
The web standards gentleman: a matter of (evolving) standards)
 
Rapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with BootstrapRapid and Responsive - UX to Prototype with Bootstrap
Rapid and Responsive - UX to Prototype with Bootstrap
 
Mobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web DesignMobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web Design
 
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
 
About Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JSAbout Best friends - HTML, CSS and JS
About Best friends - HTML, CSS and JS
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web Design
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
 
Using a CSS Framework
Using a CSS FrameworkUsing a CSS Framework
Using a CSS Framework
 
Responsive Design
Responsive DesignResponsive Design
Responsive Design
 
Css web gallery
Css web galleryCss web gallery
Css web gallery
 
Progressively Enhancing WordPress Themes
Progressively Enhancing WordPress ThemesProgressively Enhancing WordPress Themes
Progressively Enhancing WordPress Themes
 
Developing web applications in 2010
Developing web applications in 2010Developing web applications in 2010
Developing web applications in 2010
 
Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)
 
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
A Responsive Design Case Study - What We Did Wrong Building ResponsiveDesign....
 
Html5 public
Html5 publicHtml5 public
Html5 public
 
Get responsive in 30 minutes (WordCamp Sofia)
Get responsive in 30 minutes (WordCamp Sofia)Get responsive in 30 minutes (WordCamp Sofia)
Get responsive in 30 minutes (WordCamp Sofia)
 
Things to use, find and share
Things to use, find and shareThings to use, find and share
Things to use, find and share
 
Death of a Themer - Frontend United - 14 April 2013
Death of a Themer - Frontend United - 14 April 2013Death of a Themer - Frontend United - 14 April 2013
Death of a Themer - Frontend United - 14 April 2013
 

Recently uploaded

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
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
instagramfab782445
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
wpkuukw
 
Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...
Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...
Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...
amitlee9823
 
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
Abortion pills in Kuwait Cytotec pills in Kuwait
 
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
 
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
mark11275
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
nirzagarg
 
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
 

Recently uploaded (20)

HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
 
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
 
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...
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
 
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 🔝...
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
一比一定(购)卡尔顿大学毕业证(CU毕业证)成绩单学位证
 
Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...
Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...
Vip Mumbai Call Girls Bandra West Call On 9920725232 With Body to body massag...
 
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 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 ...
 
Q4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentationQ4-W4-SCIENCE-5 power point presentation
Q4-W4-SCIENCE-5 power point presentation
 
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
 
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga ❣️ 7014168258 ❣️ High Cost Unlimited Hard ...
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
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 ...
 
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experiencedWhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
WhatsApp Chat: 📞 8617697112 Call Girl Baran is experienced
 
❤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 💦✅.
 
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...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 

Topsy Turvy Design

Editor's Notes

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. \n
  64. \n
  65. \n
  66. \n
  67. \n
  68. \n
  69. \n
  70. \n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. \n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  92. \n
  93. \n
  94. \n
  95. \n
  96. \n
  97. \n
  98. \n
  99. \n
  100. \n
  101. \n
  102. \n
  103. \n
  104. \n
  105. \n
  106. \n
  107. \n
  108. \n
  109. \n
  110. \n
  111. \n
  112. \n
  113. \n
  114. \n
  115. \n
  116. \n
  117. \n
  118. \n
  119. \n
  120. \n
  121. \n
  122. \n
  123. \n
  124. \n
  125. \n
  126. \n
  127. \n
  128. \n
  129. \n
  130. \n
  131. \n
  132. \n
  133. \n
  134. \n
  135. \n
  136. \n
  137. \n
  138. \n
  139. \n
  140. \n
  141. \n
  142. \n
  143. \n
  144. \n
  145. \n
  146. \n
  147. \n
  148. \n
  149. \n
  150. \n
  151. \n
  152. \n
  153. \n
  154. \n
  155. \n