Introduction to Responsive Design v.2

Introduction to
Responsive Web Design
      version 2.0


               Clarissa Peterson
                        @clarissa
a workshop for the
 DC Web Women
 Code(Her) Series


September 11, 2012
1. What is responsive web design
2. Where it came from
3. Example sites
4. Hands-on demonstration
5. Other things you should know
6. Q&A
Responsive Web Design
Responsive Web Design
Responsive Web Design

 A collection of techniques that allow
your website to respond to the device
      that it is being viewed on.
Responsive Web Design

 A collection of techniques that allow
your website to respond to the device
      that it is being viewed on.


This allows all users to have an optimal experience
without creating separate sites for different devices.
http://www.bostonglobe.com/
http://www.bostonglobe.com/
http://www.bostonglobe.com/
http://www.bostonglobe.com/
1. A flexible, grid-based layout
2. Flexible images and media
3. Media queries
HTML
Markup Language
First website: http://www.w3.org/History/19921103-hypertext/hypertext/WWW/TheProject.html
<p>...</p>

   <h1>...</h1>

<a href=””>...</a>
<hp1>...</hp1>


 (highlighting)
<blink>...</blink>
Control:

HTML tables
 spacer gifs
Cascading Style Sheets (CSS)
HTML   Content
 CSS   Presentation
John Kannenberg via Creative Commons http://flic.kr/p/9E7tqh
Designing for one canvas.
Brendan Gates via Creative Commons http://flic.kr/p/dvX1J
Curtis Palmer via Creative Commons http://flic.kr/p/wyPiC
Designing for unlimited canvases?
Brad Frost via Creative Commons http://flic.kr/p/cfQwL7
The web is free from the physical
    restraints of the canvas
Clarissa Peterson via Creative Commons (CC BY-NC-SA 2.0)
Paulo Fierro via Creative Commons http://flic.kr/p/ae8Nnr
Responsive web design offers us a way
forward, finally allowing us to “design for
the ebb and flow of things.”

                                                            - Ethan Marcotte



http://www.alistapart.com/articles/responsive-web-design/
Responsive Web Design http://www.abookapart.com/products/responsive-web-design/
Responsive Architecture
Tristan Sterk via Creative Commons http://commons.wikimedia.org/wiki/File:ResponsiveEnvelope1.jpg
It’s easy to build a house
on flat land with four walls.
© Clarissa Peterson
Work around the environment.
© Clarissa Peterson
Think about design differently.
© Clarissa Peterson
A website with a responsive
 design is no longer just a
   picture on a canvas.
A Few Examples
of Responsive Design
Smashing Magazine
http://www.smashingmagazine.com


       People (mobile site)
       http://m.people.com


        United Pixelworkers
http://www.unitedpixelworkers.com/
World Wildlife Fund
     http://worldwildlife.org/


         Stuff & Nonsense
http://www.stuffandnonsense.co.uk/


        Emeril’s Restaurants
http://www.emerilsrestaurants.com/
Andersson-Wise Architects
   http://www.anderssonwise.com


   Federal Government: AIDS.gov
           http://aids.gov


  WordPress Theme: Twenty Twelve
http://twentytwelvedemo.wordpress.com/
Two Approaches
1. Start from scratch


2. Make an existing design
    more responsive
download files for hands-on exercise here:
clarissapeterson.com/files/dcww/


open in your text editor: style.css
open in your browser: demo.html
If you’re doing this at home, please note that each
section of code is marked at the bottom of the slide with
an example number that you can look for in your
style.css file.

Example 1 in style.css      like this
Older Browsers:

  Some of this won’t work in older
browsers, so you’ll need to do some
    extra stuff to make it work.


        (read the book....)
Introduction to Responsive Design v.2
1. A flexible, grid-based layout
2. Flexible images and media
3. Media queries
Introduction to Responsive Design v.2
Columns provide structure.
http://www.bostonglobe.com/
Introduction to Responsive Design v.2
target ÷ context = result
target ÷ context = result
___px ÷ 1280px = __%
(but you don’t actually need
 to remember the formula)
<div class="site">
! ...
</div>




Example 1 in style.css
Introduction to Responsive Design v.2
.site {
! width: 1280px;
}




Example 1 in style.css
.site {
! width: 100%;
}




Example 1 in style.css
<div id="heading">
! ...
</div>




Example 2 in style.css
Introduction to Responsive Design v.2
#heading {
! background-color: #fff;
! width: 960px;
! margin: 1.5em auto;
! text-align:right;
}




Example 2 in style.css
#heading {
! background-color: #fff;
! width: 75%;
! margin: 1.5em auto;
! text-align:right;
}




Example 2 in style.css
<div id="promowrapper">
  <img src="promoimage.jpg" alt="Attend
  seminars, networking events, and
  more." />
</div>




Example 3 in style.css
Introduction to Responsive Design v.2
#promowrapper {
! margin: 0 auto;
! width: 960px;
}




Example 3 in style.css
#promowrapper {
! margin: 0 auto;
! width: 75%;
}




Example 3 in style.css
<div id="content">
  ...
</div>




Example 4 in style.css
Introduction to Responsive Design v.2
#content {
! background-color: #fff;
! width: 960px;
! margin: auto;
}




Example 4 in style.css
#content {
! background-color: #fff;
! width: 75%;
! margin: auto;
}




Example 4 in style.css
<div id=”content”>
  <div class="contentbox">
    <h2>Who We Are</h2>

     ...

  </div>

  ...

</div>

Example 4 in style.css
Introduction to Responsive Design v.2
.contentbox {
! width: 300px;
! float:left;
! padding: 2em 30px 2em 0;
}




Example 4 in style.css
.contentbox {
! width: 31.25%;
! float:left;
! padding: 2em 30px 2em 0;
}




Example 4 in style.css
.contentbox {
! width: 31.25%;
! float:left;
! padding: 2em 30px 2em 0;
}




Example 4 in style.css
.contentbox {
! width: 31.25%;
! float:left;
! padding: 2em 3.125% 2em 0;
}




Example 4 in style.css
<div id="footercontent">
  ...
</div>




Example 5 in style.css
Introduction to Responsive Design v.2
#footercontent {
! width: 960px;
! margin: auto;
! color: #fff;
}




Example 5 in style.css
#footercontent {
! width: 75%;
! margin: auto;
! color: #fff;
}




Example 5 in style.css
Introduction to Responsive Design v.2
1. A flexible, grid-based layout
2. Flexible images and media
3. Media queries
Introduction to Responsive Design v.2
<div id="promowrapper">
<img src="promoimage.jpg" alt="..." />
</div>

#promowrapper {
! margin: 0 auto;
! width: 75%;
}



Example 3 in style.css
#promo img {
! margin: 2em 0;
}




Example 3 in style.css
#promo img {
! margin: 2em 0;
! max-width: 100%;
}




Example 3 in style.css
Introduction to Responsive Design v.2
Don’t set the width and height
   attributes of the image
Also:
embed
object
video
Introduction to Responsive Design v.2
1. A flexible, grid-based layout
2. Flexible images and media
3. Media queries
<link rel="stylesheet" href="style.css"
media=”print” />
h1 { color: #f00; }
p { color: #333; }

@media print {
! h1 { color: #0f0; }
! p { color: #099; }
}
h1 { color: #f00; }
p { color: #333; }

@media print {
! h1 { color: #0f0; }
! p { color: #099; }
}
h1 { color: #f00; }
p { color: #333; }

@media print {
! h1 { color: #0f0; }
! p { color: #099; }
}
h1 { color: #f00; }
p { color: #333; }

@media print {
! h1 { color: #0f0; }
! p { color: #099; }
}
@media screen {
! ...
}
@media screen and (min-width: 1024px) {
! ...
}
@media screen and (min-width: 768px) and
(max-width: 1024px) {
! ...
}
min-device-width: 00px
 max-device-width: 00px

 orientation: landscape
 orientation: portrait

device-aspect-ratio: 16/9

  min-color-index: 256

 min-resolution: 300dpi
Introduction to Responsive Design v.2
@media screen and (max-width: 1100px) {
! #navbox {
! !
! !
! !
! }
}



Example 6 in style.css
@media screen and (max-width: 1100px) {
! #navbox {
! ! clear: left;
! !
! !
! }
}



Example 6 in style.css
Introduction to Responsive Design v.2
@media screen and (max-width: 1100px) {
! #navbox {
! ! clear: left;
! ! padding-top: 0;
! !
! }
}



Example 6 in style.css
Introduction to Responsive Design v.2
@media screen and (max-width: 1100px) {
! #navbox {
! ! clear: left;
! ! padding-top: 0;
! ! text-align: center;
! }
}



Example 6 in style.css
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
@media screen and (max-width: 500px) {
! .nav li {
! !
! !
! !
! }
}



Example 7 on style.css
@media screen and (max-width: 500px) {
! .nav li {
! ! display: block;
! !
! !
! }
}



Example 7 on style.css
Introduction to Responsive Design v.2
@media screen and (max-width: 500px) {
! .nav li {
! ! display: block;
! ! margin-left: 0;
! ! padding-bottom: 5px;
! }
}



Example 7 on style.css
Introduction to Responsive Design v.2
@media screen and (max-width: 500px) {

! ...

!   .logo {
!   ! float: none;
!   ! text-align: center;
!   }
}


Example 7 on style.css
Introduction to Responsive Design v.2
Introduction to Responsive Design v.2
@media screen and (max-width: 500px) {

! ...

!   .contentbox {
!   ! width: 100%;
!   !
!   !
!   }
}

Example 7 on style.css
Introduction to Responsive Design v.2
@media screen and (max-width: 500px) {

! ...

!   .contentbox {
!   ! width: 100%;
!   ! float: none;
!   ! padding: 25px 0 0;
!   }
}

Example 7 on style.css
Introduction to Responsive Design v.2
Breakpoints
(where the design breaks)
Commonly-Used Breakpoints

            Device Type             Width
Mobile phones (portrait)            320px
Mobile phones (landscape)           480px
7” tablets (portrait)               600px
10” tablets (portrait)              768px
10” tablets (landscape), Monitors   1024px
Wider monitors                      1280px
But what happens when
there are new devices?
Break when the design tells you to.
Options:
Options:
Ignore Mobile?
Options:
  Ignore Mobile?
Separate Mobile Site
Options:
  Ignore Mobile?
Separate Mobile Site
Native Mobile App
Options:
  Ignore Mobile?
Separate Mobile Site
Native Mobile App
 Responsive Design
Your boss saying you need
  a mobile app is not a good
reason to make a mobile app.
Mobile First
Start from the smallest screen,
determine which parts of the design
are truly necessary, and make those
      the basis of your design.
Mobile first = better user
experience across devices
Mobile-Only Users
Consider bandwidth
Older Browsers:

Give them default CSS that they can
           understand.
Device Testing
(if you don’t have devices)
Clarissa Peterson via Creative Commons (CC BY-NC-SA 2.0)
Test early, test often
Test at Various Widths


     tools such as:
 resizemybrowser.com
quirktools.com/screenfly/
Use a Mobile Emulator


        such as:
mobilephoneemulator.com
Smartphones
Feature Phones
   Tablets
Touch Interaction
Desktop Browsers
Mobile Browsers
Device Lab DC
devicelabdc.com
Responsive Process
How to explain responsive
design to (internal/external) clients
The design won’t look the
same on every browser/device
Static comps aren’t enough
Style Tiles
Style Tiles
fonts, colors, interface elements
Style Tiles
  fonts, colors, interface elements
communicate the essence of a visual
       brand for the web
Style Tiles via Creative Commons http://styletil.es/
Style Tiles
  help form a common visual
    language between the
designers and the stakeholders
Style Tiles via Creative Commons http://styletil.es/
Photoshop is for photos


InDesign is for design & typography
Design


Develop
Design doesn’t end
when development begins
Content First
Users aren’t coming to your
    site because it’s pretty,
they’re coming for the content.
Responsive Design:
We are free of the canvas.
Q&A
Resources
Books
Ethan Marcotte
Responsive Web Design (2011)
http://www.abookapart.com/products/responsive-web-design/


Luke Wroblewski
Mobile First (2011)
http://www.abookapart.com/products/mobile-first
Articles
Responsive Web Design - Ethan Marcotte (May 2010)
http://www.alistapart.com/articles/responsive-web-design/


How to Approach a Responsive Design (Boston Globe) - Tito Bottitta (Jan. 2012)
http://upstatement.com/blog/2012/01/how-to-approach-a-responsive-design/


50 Fantastic Tools for Responsive Web Design - Denise Jacobs, Peter Gasston (Apr. 2012)
http://www.netmagazine.com/features/50-fantastic-tools-responsive-web-design


Design Process In The Responsive Age - Drew Clemens (May 2012)
http://uxdesign.smashingmagazine.com/2012/05/30/design-process-responsive-age/


Making of: People Magazine's Responsive Mobile Website (July 2012)
http://globalmoxie.com/blog/making-of-people-mobile.shtml


3 Types of Solutions To Work With Responsive Images - Steven Bradley (July 2012)
http://www.vanseodesign.com/web-design/responsive-images/
More Articles
The Top Responsive Web Design Problems and How to Avoid Them - James Young (Aug. 2012)
http://www.netmagazine.com/features/top-responsive-web-design-problems-and-how-avoid-them


Presidential Smackdown Edition: Separate Mobile Website Vs. Responsive Website - Brad Frost (Aug. 2012)
http://mobile.smashingmagazine.com/2012/08/22/separate-mobile-responsive-website-presidential-
smackdown/


Responsive Design Case Study (South Tees Hospitals NHS Foundation Trust) - Matt Berridge (Aug. 2012)
http://builtbyboon.com/blog/responsive-design-case-study




                                   Miscellaneous
Someone asked how I measure things on the screen:

MeasureIt (Firefox add-on)
https://addons.mozilla.org/en-US/firefox/addon/measureit/
Websites
@RWD
links about responsive design (Ethan Marcotte)
https://twitter.com/RWD


Future Friendly
making things that are future-friendly
http://futurefriend.ly/


Brad Frost
blog that covers responsive design
http://bradfrostweb.com/blog/


Mediaqueri.es
inspirational websites using media queries and responsive web design
http://mediaqueri.es/
Other Information
DC Web Women
A professional organization of more than 3000 members located in the Washington, DC area.
Members are professional women, students and enthusiasts who specialize in web-related fields.
http://www.dcwebwomen.org/


We Are All Awesome
Be a role model: why there should be more female speakers at tech conferences. Resources on
creating presentations, getting ideas, writing proposals, and finding conferences with open CFPs.
http://weareallaweso.me/
Mount Rainier. Clarissa Peterson via Creative Commons (CC BY-NC-SA 2.0)
Thank You


 Clarissa Peterson
clarissapeterson.com
cp@clarissapeterson.com
       @clarissa
1 of 178

Recommended

Responsive Design Tools & Resources by
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & ResourcesClarissa Peterson
4.1K views177 slides
Responsive Design Essentials by
Responsive Design EssentialsResponsive Design Essentials
Responsive Design EssentialsClarissa Peterson
17.3K views125 slides
Responsive Design by
Responsive Design Responsive Design
Responsive Design Clarissa Peterson
12.7K views162 slides
Introduction to Responsive Web Design by
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignClarissa Peterson
23.5K views152 slides
UX & Responsive Design by
UX & Responsive DesignUX & Responsive Design
UX & Responsive DesignClarissa Peterson
30.7K views94 slides
Responsive Design Heaven & Hell by
Responsive Design Heaven & HellResponsive Design Heaven & Hell
Responsive Design Heaven & HellClarissa Peterson
7.1K views46 slides

More Related Content

What's hot

Responsive Design Workshop by
Responsive Design WorkshopResponsive Design Workshop
Responsive Design WorkshopClarissa Peterson
8.9K views398 slides
Responsive Web Design by
Responsive Web DesignResponsive Web Design
Responsive Web DesignTung Dang
1.4K views66 slides
Responsive Design in the Real World by
Responsive Design in the Real WorldResponsive Design in the Real World
Responsive Design in the Real WorldClarissa Peterson
14.1K views108 slides
Optimizing User Experience with Responsive Web Design by
Optimizing User Experience with Responsive Web DesignOptimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web DesignClarissa Peterson
30.2K views94 slides
UX & Responsive Design by
UX & Responsive DesignUX & Responsive Design
UX & Responsive DesignClarissa Peterson
3.9K views99 slides
Designing Responsive Websites by
Designing Responsive WebsitesDesigning Responsive Websites
Designing Responsive WebsitesClarissa Peterson
14.3K views103 slides

What's hot(20)

Responsive Web Design by Tung Dang
Responsive Web DesignResponsive Web Design
Responsive Web Design
Tung Dang1.4K views
Responsive Design in the Real World by Clarissa Peterson
Responsive Design in the Real WorldResponsive Design in the Real World
Responsive Design in the Real World
Clarissa Peterson14.1K views
Optimizing User Experience with Responsive Web Design by Clarissa Peterson
Optimizing User Experience with Responsive Web DesignOptimizing User Experience with Responsive Web Design
Optimizing User Experience with Responsive Web Design
Clarissa Peterson30.2K views
Mobile First Responsive Web Design — BD Conf Oct 2013 by Jason Grigsby
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 Grigsby54.4K views
The Progressive Web and its New Challenges - Confoo Montréal 2017 by Christian Heilmann
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
Christian Heilmann1.9K views
The Soul in The Machine - Developing for Humans by Christian Heilmann
The Soul in The Machine - Developing for HumansThe Soul in The Machine - Developing for Humans
The Soul in The Machine - Developing for Humans
Christian Heilmann1.4K views
Responsive Design Tools & Resources by Clarissa Peterson
Responsive Design Tools & ResourcesResponsive Design Tools & Resources
Responsive Design Tools & Resources
Clarissa Peterson83.3K views
Why the heck isnt word press a cms by John Eckman
Why the heck isnt word press a cmsWhy the heck isnt word press a cms
Why the heck isnt word press a cms
John Eckman2K views
The Soul in The Machine - Developing for Humans (FrankenJS edition) by Christian Heilmann
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 Heilmann916 views
Breaking out of the Tetris mind set #btconf by Christian Heilmann
Breaking out of the Tetris mind set #btconfBreaking out of the Tetris mind set #btconf
Breaking out of the Tetris mind set #btconf
Christian Heilmann3.2K views
Beyond Squishy: The Principles of Adaptive Design by Brad Frost
Beyond Squishy: The Principles of Adaptive DesignBeyond Squishy: The Principles of Adaptive Design
Beyond Squishy: The Principles of Adaptive Design
Brad Frost116.7K views
Progressive Web Apps – the return of the web? by Christian Heilmann
Progressive Web Apps – the return of the web?Progressive Web Apps – the return of the web?
Progressive Web Apps – the return of the web?
Christian Heilmann1.5K views
So…What Do I Make? (Dan Mall) by Future Insights
So…What Do I Make? (Dan Mall)So…What Do I Make? (Dan Mall)
So…What Do I Make? (Dan Mall)
Future Insights7.3K views

Similar to Introduction to Responsive Design v.2

Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015... by
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
872 views44 slides
Responsive Web Design - Drupal Camp CPH by
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPHPeytz Design
595 views17 slides
Building Responsive Websites and Apps with Drupal by
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalFour Kitchens
1.4K views71 slides
Great Responsive-ability Web Design by
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web DesignMike Wilcox
697 views34 slides
RWD by
RWDRWD
RWDMilly Schmidt
224 views105 slides
Mobile Monday Presentation: Responsive Web Design by
Mobile Monday Presentation: Responsive Web DesignMobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web DesignCantina
1.3K views30 slides

Similar to Introduction to Responsive Design v.2(20)

Responsive Web Design: the secret sauce - JavaScript Open Day Montreal - 2015... by Frédéric Harper
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 Harper872 views
Responsive Web Design - Drupal Camp CPH by Peytz Design
Responsive Web Design - Drupal Camp CPHResponsive Web Design - Drupal Camp CPH
Responsive Web Design - Drupal Camp CPH
Peytz Design595 views
Building Responsive Websites and Apps with Drupal by Four Kitchens
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with Drupal
Four Kitchens1.4K views
Great Responsive-ability Web Design by Mike Wilcox
Great Responsive-ability Web DesignGreat Responsive-ability Web Design
Great Responsive-ability Web Design
Mike Wilcox697 views
Mobile Monday Presentation: Responsive Web Design by Cantina
Mobile Monday Presentation: Responsive Web DesignMobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web Design
Cantina1.3K views
Responsive Web Design in iMIS (NiUG Austin 2015) by Andrea Robertson
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 Robertson1K views
Web Development for UX Designers by Ashlimarie
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
Ashlimarie 38.9K views
RWD in the Wild by Rich Quick
RWD in the WildRWD in the Wild
RWD in the Wild
Rich Quick905 views
Responsive Web Design, get the best out of your designs - JavaScript Open Day... by Frédéric Harper
Responsive Web Design, get the best out of your designs - JavaScript Open Day...Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Frédéric Harper6.7K views
Web Accessibility for the 21st Century by dreamwidth
Web Accessibility for the 21st CenturyWeb Accessibility for the 21st Century
Web Accessibility for the 21st Century
dreamwidth2.9K views
Responsive content by honzie
Responsive contentResponsive content
Responsive content
honzie769 views
Responsive Websites by Joe Seifi
Responsive WebsitesResponsive Websites
Responsive Websites
Joe Seifi19.4K views
Responsive Web Designed for your communication and marketing needs by SEGIC
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
SEGIC1.4K views
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25 by Frédéric Harper
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Frédéric Harper700 views
Designing with CSS3 Effectively & Efficiently by Zoe Gillenwater
Designing with CSS3 Effectively & EfficientlyDesigning with CSS3 Effectively & Efficiently
Designing with CSS3 Effectively & Efficiently
Zoe Gillenwater1.4K views
Responsive Web Design (April 18th, Los Angeles) by Thinkful
Responsive Web Design (April 18th, Los Angeles)Responsive Web Design (April 18th, Los Angeles)
Responsive Web Design (April 18th, Los Angeles)
Thinkful139 views

More from Clarissa Peterson

Alt Text Is Your Superpower by
Alt Text Is Your SuperpowerAlt Text Is Your Superpower
Alt Text Is Your SuperpowerClarissa Peterson
18 views48 slides
Designing for Users: How to Create a Better User Experience by
Designing for Users: How to Create a Better User ExperienceDesigning for Users: How to Create a Better User Experience
Designing for Users: How to Create a Better User ExperienceClarissa Peterson
2.3K views93 slides
Creating Beautiful, Accessible, and User-Friendly Forms by
Creating Beautiful, Accessible, and User-Friendly FormsCreating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly FormsClarissa Peterson
27K views172 slides
Making the Web Easy by
Making the Web EasyMaking the Web Easy
Making the Web EasyClarissa Peterson
23.6K views162 slides
Responsive Color by
Responsive ColorResponsive Color
Responsive ColorClarissa Peterson
21.6K views139 slides
Responsive Typography II by
Responsive Typography IIResponsive Typography II
Responsive Typography IIClarissa Peterson
46.8K views106 slides

More from Clarissa Peterson(6)

Recently uploaded

New Icon Presentation.pdf by
New Icon Presentation.pdfNew Icon Presentation.pdf
New Icon Presentation.pdfsydneyjrichardson
21 views5 slides
StratPlanning Manual 220713.pdf by
StratPlanning Manual 220713.pdfStratPlanning Manual 220713.pdf
StratPlanning Manual 220713.pdfLakewalk Media
15 views43 slides
Doing Footwear - Footwear Factory by
Doing Footwear - Footwear FactoryDoing Footwear - Footwear Factory
Doing Footwear - Footwear FactoryDoing Footwear
11 views15 slides
evidence .pptx by
evidence .pptxevidence .pptx
evidence .pptxnpgkddpbpd
10 views4 slides
Antimalarial agents-Medicinal Chemistry by
Antimalarial agents-Medicinal ChemistryAntimalarial agents-Medicinal Chemistry
Antimalarial agents-Medicinal ChemistryNarminHamaaminHussen
6 views27 slides
polaris by
polarispolaris
polarisscribddarkened352
238 views13 slides

Recently uploaded(20)

StratPlanning Manual 220713.pdf by Lakewalk Media
StratPlanning Manual 220713.pdfStratPlanning Manual 220713.pdf
StratPlanning Manual 220713.pdf
Lakewalk Media15 views
Doing Footwear - Footwear Factory by Doing Footwear
Doing Footwear - Footwear FactoryDoing Footwear - Footwear Factory
Doing Footwear - Footwear Factory
Doing Footwear11 views
Scopic UX Design Test Task.pdf by Atiqur Rahaman
Scopic UX Design Test Task.pdfScopic UX Design Test Task.pdf
Scopic UX Design Test Task.pdf
Atiqur Rahaman302 views
TISFLEET WEB DESIGN PROJECT by Rabius Sany
TISFLEET WEB DESIGN PROJECTTISFLEET WEB DESIGN PROJECT
TISFLEET WEB DESIGN PROJECT
Rabius Sany39 views
Design System in Figma A to Z.pdf by Atiqur Rahaman
Design System in Figma A to Z.pdfDesign System in Figma A to Z.pdf
Design System in Figma A to Z.pdf
Atiqur Rahaman22 views
Sudden Deafness Design Document by wyfangherman
Sudden Deafness Design DocumentSudden Deafness Design Document
Sudden Deafness Design Document
wyfangherman48 views
IEC 600068-2-39 ENVIROMENT TESTING COMBINED TEMPERATURE LOW HUMIDTY.pdf by NirmalanGanapathy1
IEC 600068-2-39 ENVIROMENT TESTING COMBINED TEMPERATURE LOW HUMIDTY.pdfIEC 600068-2-39 ENVIROMENT TESTING COMBINED TEMPERATURE LOW HUMIDTY.pdf
IEC 600068-2-39 ENVIROMENT TESTING COMBINED TEMPERATURE LOW HUMIDTY.pdf
SS25 Fashion Key Items trend book by Peclers Paris
SS25 Fashion Key Items trend bookSS25 Fashion Key Items trend book
SS25 Fashion Key Items trend book
Peclers Paris148 views

Introduction to Responsive Design v.2