SlideShare ist ein Scribd-Unternehmen logo
1 von 68
Downloaden Sie, um offline zu lesen
Improving the Responsive
Web Design Process
in 2016
@chumillas
Cristina Chumillas
DESIGNER AND FRONTEND DEVELOPER AT YMBRA
ckrina
“Mobile to overtake fixed Internet
access by 2014”
2008 by Mary Meeker
@chumillas #DrupalCampEs
Modern Design processes
Content-First
Mobile-First Design
@chumillas #DrupalCampEs
Modern Design processes
Static compositions
Content-First
Mobile-First Design
@chumillas #DrupalCampEs
Modern Design processes
Content-First
Mobile-First Design
Responsive prototypes
Get into the browser quickly!
@chumillas #DrupalCampEs
Modern Design processes
Content-First
Mobile-First Design
Responsive prototypes
Lorem ipsum
@chumillas #DrupalCampEs
Modern Design processes
Content-First
Mobile-First Design
Responsive prototypes
Real content (extreme cases)
@chumillas #DrupalCampEs
Atomic Design and components
Modern Design processes
Content-First
Mobile-First Design
Responsive prototypes
Real content (extreme cases)
@chumillas #DrupalCampEs
Performance
@chumillas #DrupalCampEs
Performance
Performance = UX
4” 16%
64%
smartphone
users
page weight
2015
2,2Mb
average
@chumillas #DrupalCampEs
Performance
5KB
HTML
125KB
Images
7KB
CSS
33KB
JS
20KB
VIDEO
10KB
Fonts
2s Fast 3G
(1.6Mb)
200KB
http://www.performancebudget.io
We have to decide the performance budget
@chumillas #DrupalCampEs
Performance
Performance = UX
“Perceived performance: your most critical metric”
Immediate
User-flow (human-interaction)
Attention span
1s
1-5s
5-10s
@chumillas #DrupalCampEs
Performance
238ms 300ms 452ms 497ms 651ms
HTML
logo
header image
other images
footer background
other JS
CSS
jQuery
Modernizr
@chumillas #DrupalCampEs
Performance
687ms 825ms 895ms 954ms 1.25ms
other images
footer background
other JS
3rd party stuff (Analytics, Ads, etc)
fonts
@chumillas #DrupalCampEs
@chumillas #DrupalCampEs
Performance
Optimize image files
Concatenate text files
Minimify text files
Compress text files
Cache everywhere
@chumillas #DrupalCampEs
CSS structuring
and optimization
@chumillas #DrupalCampEs
CSS structuring and optimization
CSS Methodologies
CSS Methodologies
· OOCSS
· BEM
· SMACSS
@chumillas #DrupalCampEs
Reuse CSS
CSS structuring and optimization
CSS Methodologies
@chumillas #DrupalCampEs
Reuse CSS
Reduce page size
CSS structuring and optimization
CSS Methodologies
@chumillas #DrupalCampEs
Reuse CSS
Reduce page size
Increase page rendering speed
CSS structuring and optimization
CSS Methodologies
@chumillas #DrupalCampEs
Reuse CSS
Faster CSS rendering
CSS structuring and optimization
CSS Methodologies
.element-name--last {}
.box:nth-last-child(-n+1) .title {}
@chumillas #DrupalCampEs
Reuse CSS
Faster CSS rendering
Large scale ready
Helps you figure out what your
design is made of.
Helps you getting started in a project.
CSS structuring and optimization
CSS Methodologies
#DrupalCampEs
Living document of code that details
all the elements of your site.
CSS structuring and optimization
Living Styleguides
@chumillas #DrupalCampEs
Faster build times for new sections and pages
Standardize the CSS, keeping it small and
quick to load
Design consistency is easier to maintain
CSS structuring and optimization
Living Styleguides
@chumillas #DrupalCampEs
Fixed-pixel vs
relative units
@chumillas #DrupalCampEs
Fixed-pixel vs relative units
Layouts benefit from relative units.
16px 1em 1rem
@chumillas #DrupalCampEs
Fixed-pixel vs relative units
1.1 x the base 16px
17,6px (1.1 x the previous)
19,36px (1.1 x the previous)
1.1 x the base
1.1 x the base
emrem
@chumillas #DrupalCampEs
Viewport Sized Units
vw
vh
vmax
@chumillas #DrupalCampEs
Responsive
Typography
@chumillas #DrupalCampEs
Responsive Typography
User’s distance from the screen
@chumillas #DrupalCampEs
Responsive Typography
Title
14px
16px
22-60 rems
40-80 characters
Occusapicim dit doluptassum que labo. Em
sam ilictumPore quisqui officitaspit volenis
eturio est venim ipis ex eturepe llandit eum,
untium, quostot aturia sim sam corendanihit
fugianis delitio sandae volupta quate re nos
aut et dolendi tatium, offic te nos est aliat
que perum et eaquatu riberibus mo cus.
Peruntio. Nequiam et quo eum lab ipsa
cusantiberro maxim faccus am et voluptatem
voluptae pa cuptas et quae simagnim facienis
et et ese pa sanis aut autem asi unt ommodis
aut fugitasped qui omnimag nisimil laborum
sunt adit, voluptatur rero opti aris aut rerum
eos eatint, vitatem. Rovid quid ma aut
maximi, oditat lamus imusdantiis ex excessi
tatque poriatur?
@chumillas #DrupalCampEs
Responsive Typography
5%
10KB 200KB
38KB	ttf
18KB	woff2
Open Sans Regular
@chumillas #DrupalCampEs
Responsive Typography
FOUT FOIT
“Flash of Unstyled Text” “Flash of Invisible Text”
Browsers used to display a
fallback font in the font stack
until the custom one loaded.
They started to detect if text
was set in a custom font that
hasn’t loaded yet, and made
it invisible until the font did
load
FOUT, FOIT
@chumillas #DrupalCampEs
Responsive Typography
Readability
Correct font size depending on container
@chumillas #DrupalCampEs
Responsive Typography
Readability
Use less fonts
Correct font size depending on container
Do you need them?
@chumillas #DrupalCampEs
@chumillas #DrupalCampEs
Responsive Typography
Readability
Use less fonts
Use modern font formats
Correct font size depending on container
Do you need them?
Reduce the page weight
@chumillas #DrupalCampEs
Images
@chumillas #DrupalCampEs
Images
JPG PNG 24-bitPNG 8-bit
@chumillas #DrupalCampEs
Images
Browsers request images
asynchronously
Images too big for the device
website bytes
61%
@chumillas #DrupalCampEs
Responsive images
The aim is to deliver the
highest quality image supported
and nothing more.
@chumillas #DrupalCampEs
Responsive images
Scaled images
<img
	 srcset=”image-large.jpg 1920w,
	 image-medium.jpg 960w,
	 image-small.jpg 480w”
	 sizes=”50vw”
	 src=”quilt_2/detail/medium.jpg”
	 alt=”Detail text.”>
@chumillas #DrupalCampEs
Responsive images
<picture title=”Image title”>
	<source
		srcset=”image-big.jpg 1x, image-big2x.jpg 2x”
		 media=”(min-width: 0px) and (max-width: 29.99em)”>
	
	<source
		srcset=”image-big.jpg 1x, image-big2x.jpg 2x”
		 media=”(min-width: 30em)”>
	 <img srcset=”image-big.jpg 180w”>
</picture>
Adapted images
@chumillas #DrupalCampEs
Responsive images
Adapted images
@chumillas #DrupalCampEs
Responsive images
Non Drupal solutions
ReSrc, thumbr.io, responsive.io
Cloudinary
Picturefill
Scaling based on the targeted end result
Scaling based on url.
Scaling based on media-queries.
...
@chumillas #DrupalCampEs
SVGs
Scaling based on the targeted end result
Scales to any size without losing clarity
Looks great on retina displays
Design control like interactivity and filters
Scalable Vector Graphics
Future-proof
Easy to make and edit
Manipulatable with CSS & JS *
Highly compressible
@chumillas #DrupalCampEs
Asynchronous
loading
@chumillas #DrupalCampEs
Asynchronous loading
Connection Setup
Starts printing
Request Sent
Waiting response
Download
Default behavior
HTML
CSS
JS 1
JS 2
JS 2
JS 3
JS 3
@chumillas #DrupalCampEs
Asynchronous loading
Default behavior
<html>
<head>
<link rel=”stylesheet” href=”styles.css”/>
<script src=”javascript.js”></script>
</head>
<body>
<div>Page content</div>
</body>
</html>
@chumillas #DrupalCampEs
Asynchronous loading
Async
<html>
<head>
<link rel=”stylesheet” href=”styles.css”/>
<script src=”javascript.js” async></script>
</head>
<body>
<div>Page content</div>
</body>
</html>
@chumillas #DrupalCampEs
While the JavaScript file is loading, parsing the
HTML document can continue
JS execution no longer has to wait for CSS
You can’t guarantee the order of JS execution
The script shouldn’t use document.write()
The document parser doesn’t pause while the script is loading, the
browser has no idea where any content added by document.write()
should go.
Doesn’t block the DOMContentLoaded event
Asynchronous loading
Async
i
i
@chumillas #DrupalCampEs
Asynchronous loading
Defer
<script src=”javascript.js” defer></script>
Deferred scripts are executed only after the
HTML page has been parsed
It has the potential to interfere with the
rendering of the page
Deferred scripts will execute in the order they
appear in the document ou can’t guarantee
the order of JS execution
async has priority
i
i
@chumillas #DrupalCampEs
<html>
<head>
<link rel=”stylesheet” href=”styles.css”/>
<script src=”javascript.js”></script>
<script src=”javascript.js” async></script>
<script>
/* JavaScript source code goes here... */
</script>
</head>
<body>
<div>Page content</div>
<script src=”javascript.js”></script>
</body>
</html>
Asynchronous loading
@chumillas #DrupalCampEs
Proxy-based
browsers
@chumillas #DrupalCampEs
Proxy-based browsers
Reduce bandwidth usage by
compressing resources
on a proxy server
before sending it to the client browser.
India, Indonesia, Nigeria, Bangladesh
and South Africa
Opera Mini users
250
million
@chumillas #DrupalCampEs
Use SVG rather than icon fonts
Style your HTML with CSS
Test your site without JavaScript
Make your site performant
Test in Opera Mini
Proxy-based browsers
@chumillas #DrupalCampEs
Progressive enhancement
Basic content and functionality of a web
page to any browser or Internet connection
Enhanced version advanced browser
software or greater bandwidth
Proxy-based browsers
Accessibility
@chumillas #DrupalCampEs
Beyond the Mouse
Touch and keyboard events
@chumillas #DrupalCampEs
Beyond the mouse
• Be accessible in browsers where a mouse pointer may not exist.
• Don’t assume touch will be used, but design as if it will be.
Save hover for shortcuts
Keep in touch
Gestures: don’t override them
@chumillas #DrupalCampEs
Beyond the mouse
Save hover for shortcuts
Keep in touch
57x45px
safe
space
thumbfinger
72x45px
@chumillas #DrupalCampEs
Beyond the mouse
Save hover for shortcuts
Keep in touch
Gestures: don’t override them
@chumillas #DrupalCampEs
RWD patterns
and Progressively
Disclosure
@chumillas #DrupalCampEs
RWD Patterns
Navigation patterns
UI patterns
Grid patterns
@chumillas #DrupalCampEs
Thank you!
@chumillas

Weitere ähnliche Inhalte

Was ist angesagt?

Wcphx 2012-workshop
Wcphx 2012-workshopWcphx 2012-workshop
Wcphx 2012-workshop
Ptah Dunbar
 

Was ist angesagt? (20)

Web Development for UX Designers
Web Development for UX DesignersWeb Development for UX Designers
Web Development for UX Designers
 
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 Web Design - but for real!
Responsive Web Design - but for real!Responsive Web Design - but for real!
Responsive Web Design - but for real!
 
Front End Best Practices
Front End Best PracticesFront End Best Practices
Front End Best Practices
 
Web Optimisation
Web OptimisationWeb Optimisation
Web Optimisation
 
Modern Front-End Development
Modern Front-End DevelopmentModern Front-End Development
Modern Front-End Development
 
Real World Web Standards
Real World Web StandardsReal World Web Standards
Real World Web Standards
 
Front-End Frameworks: a quick overview
Front-End Frameworks: a quick overviewFront-End Frameworks: a quick overview
Front-End Frameworks: a quick overview
 
Wcphx 2012-workshop
Wcphx 2012-workshopWcphx 2012-workshop
Wcphx 2012-workshop
 
Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)Whirlwind Tour of SVG (plus RaphaelJS)
Whirlwind Tour of SVG (plus RaphaelJS)
 
Responsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNNResponsive & Responsible Web Design in DNN
Responsive & Responsible Web Design in DNN
 
State of jQuery June 2013 - Portland
State of jQuery June 2013 - PortlandState of jQuery June 2013 - Portland
State of jQuery June 2013 - Portland
 
Web Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSWeb Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JS
 
Intro to Web Development
Intro to Web DevelopmentIntro to Web Development
Intro to Web Development
 
HTML5 Essential Training
HTML5 Essential TrainingHTML5 Essential Training
HTML5 Essential Training
 
Dive into HTML5: SVG and Canvas
Dive into HTML5: SVG and CanvasDive into HTML5: SVG and Canvas
Dive into HTML5: SVG and Canvas
 
Practical tipsmakemobilefaster oscon2016
Practical tipsmakemobilefaster oscon2016Practical tipsmakemobilefaster oscon2016
Practical tipsmakemobilefaster oscon2016
 
Introduction to HTML5 and CSS3
Introduction to HTML5 and CSS3Introduction to HTML5 and CSS3
Introduction to HTML5 and CSS3
 
Accessibility - A feature you can build
Accessibility - A feature you can buildAccessibility - A feature you can build
Accessibility - A feature you can build
 
WordCamp Miami 09 - WP Framework
WordCamp Miami 09 - WP FrameworkWordCamp Miami 09 - WP Framework
WordCamp Miami 09 - WP Framework
 

Andere mochten auch

Intro to modern web technology
Intro to modern web technologyIntro to modern web technology
Intro to modern web technology
Chris Love
 
Latest Trends in Web Technologies
Latest Trends in Web TechnologiesLatest Trends in Web Technologies
Latest Trends in Web Technologies
bryanbibat
 

Andere mochten auch (20)

Responsive Web Design Analysis
Responsive Web Design AnalysisResponsive Web Design Analysis
Responsive Web Design Analysis
 
Web Design And Development With Open Source
Web Design And Development With Open SourceWeb Design And Development With Open Source
Web Design And Development With Open Source
 
Student Mentoring Programs: The Why's, How's, and More
Student Mentoring Programs: The Why's, How's, and MoreStudent Mentoring Programs: The Why's, How's, and More
Student Mentoring Programs: The Why's, How's, and More
 
Learn how to Responsive web desing
Learn how to Responsive web desing Learn how to Responsive web desing
Learn how to Responsive web desing
 
Bootstrap Fundamentals
Bootstrap FundamentalsBootstrap Fundamentals
Bootstrap Fundamentals
 
Designing Responsive Websites
Designing Responsive WebsitesDesigning Responsive Websites
Designing Responsive Websites
 
Brian Beckham - Atomic Design - Modularity Matters: Bringing Atomic Design to...
Brian Beckham - Atomic Design - Modularity Matters: Bringing Atomic Design to...Brian Beckham - Atomic Design - Modularity Matters: Bringing Atomic Design to...
Brian Beckham - Atomic Design - Modularity Matters: Bringing Atomic Design to...
 
Atomic Designにまつわるエトセトラ
Atomic DesignにまつわるエトセトラAtomic Designにまつわるエトセトラ
Atomic Designにまつわるエトセトラ
 
Getting Familiar with Animate CC
Getting Familiar with Animate CCGetting Familiar with Animate CC
Getting Familiar with Animate CC
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Responsive Design Workshop
Responsive Design WorkshopResponsive Design Workshop
Responsive Design Workshop
 
Intro to modern web technology
Intro to modern web technologyIntro to modern web technology
Intro to modern web technology
 
Responsive Web Design Basics
Responsive Web Design BasicsResponsive Web Design Basics
Responsive Web Design Basics
 
Creating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly FormsCreating Beautiful, Accessible, and User-Friendly Forms
Creating Beautiful, Accessible, and User-Friendly Forms
 
Latest Trends in Web Technologies
Latest Trends in Web TechnologiesLatest Trends in Web Technologies
Latest Trends in Web Technologies
 
Presentación sobre Bitcoin - Bootcamp Incutex
Presentación sobre Bitcoin - Bootcamp IncutexPresentación sobre Bitcoin - Bootcamp Incutex
Presentación sobre Bitcoin - Bootcamp Incutex
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
Starting small, thinking big
Starting small, thinking bigStarting small, thinking big
Starting small, thinking big
 

Ähnlich wie Improving the Responsive Web Design Process in 2016

2009_09_11_Grid960
2009_09_11_Grid9602009_09_11_Grid960
2009_09_11_Grid960
LightSpeed
 
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
Emma Jane Hogbin Westby
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
Richa Goel
 

Ähnlich wie Improving the Responsive Web Design Process in 2016 (20)

Improving Responsive Web Design Process 2016
Improving Responsive Web Design Process 2016Improving Responsive Web Design Process 2016
Improving Responsive Web Design Process 2016
 
Adobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + FireworksAdobe MAX 2008: HTML/CSS + Fireworks
Adobe MAX 2008: HTML/CSS + Fireworks
 
Tools for Modern Web Design
Tools for Modern Web DesignTools for Modern Web Design
Tools for Modern Web Design
 
Building high performing web pages
Building high performing web pagesBuilding high performing web pages
Building high performing web pages
 
2009_09_11_Grid960
2009_09_11_Grid9602009_09_11_Grid960
2009_09_11_Grid960
 
Exploring Critical Rendering Path
Exploring Critical Rendering PathExploring Critical Rendering Path
Exploring Critical Rendering Path
 
performance.ppt
performance.pptperformance.ppt
performance.ppt
 
HTML CSS & Javascript
HTML CSS & JavascriptHTML CSS & Javascript
HTML CSS & Javascript
 
Content Management - The story of headless CMS
Content Management - The story of headless CMSContent Management - The story of headless CMS
Content Management - The story of headless CMS
 
Decoupling Drupal - Drupal Camp Toronto 2014
Decoupling Drupal - Drupal Camp Toronto 2014Decoupling Drupal - Drupal Camp Toronto 2014
Decoupling Drupal - Drupal Camp Toronto 2014
 
The latest in site speed: advanced #webperf 2018
The latest in site speed: advanced #webperf 2018The latest in site speed: advanced #webperf 2018
The latest in site speed: advanced #webperf 2018
 
A Day Building Fast, Responsive, Extensible Single Page Applications
A Day Building Fast, Responsive, Extensible Single Page ApplicationsA Day Building Fast, Responsive, Extensible Single Page Applications
A Day Building Fast, Responsive, Extensible Single Page Applications
 
Next Steps in Responsive Design
Next Steps in Responsive DesignNext Steps in Responsive Design
Next Steps in Responsive Design
 
Drupal performance and scalability
Drupal performance and scalabilityDrupal performance and scalability
Drupal performance and scalability
 
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
 
AMP - SMX München 2018
AMP - SMX München 2018AMP - SMX München 2018
AMP - SMX München 2018
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Future-Proof Responsive Web Design #RWD
Future-Proof Responsive Web Design #RWDFuture-Proof Responsive Web Design #RWD
Future-Proof Responsive Web Design #RWD
 
Future proof rwd
Future proof rwdFuture proof rwd
Future proof rwd
 
Critical Rendering Path - Velocidade também é uma funcionalidade
Critical Rendering Path - Velocidade também é uma funcionalidadeCritical Rendering Path - Velocidade também é uma funcionalidade
Critical Rendering Path - Velocidade também é uma funcionalidade
 

Kürzlich hochgeladen

一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
ayvbos
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
ayvbos
 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
JOHNBEBONYAP1
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Monica Sydney
 
PowerDirector Explination Process...pptx
PowerDirector Explination Process...pptxPowerDirector Explination Process...pptx
PowerDirector Explination Process...pptx
galaxypingy
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
ydyuyu
 

Kürzlich hochgeladen (20)

一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
一比一原版(Flinders毕业证书)弗林德斯大学毕业证原件一模一样
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
Power point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria IuzzolinoPower point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria Iuzzolino
 
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
PowerDirector Explination Process...pptx
PowerDirector Explination Process...pptxPowerDirector Explination Process...pptx
PowerDirector Explination Process...pptx
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 

Improving the Responsive Web Design Process in 2016