SlideShare uma empresa Scribd logo
1 de 83
Baixar para ler offline
Responsive Webdesign
   or: "webdesign, done right"

        by Tom Hermans - tomhermans.com
                 @tomhermans
about me
designer / developer / wp guy
free-lancing
Sony Europe - UX - e-Platform

reach me via:
tomhermans.com
@tomhermans
design
A plan or drawing produced
to show the look and function or workings
of a building, garment, or other object
(before it is built or made.)
print
card
packaging
nicer packaging
car wrap
fashion
body paint
what do these designs
all have in common ?

great slide pic to pose a question
to the audience i guess
all applied on a
     canvas
canvas
    physical size
     constraints

power to the designer
how does the web canvas look like?
web pages are elastic
in both horizontal and vertical dimensions
               in a way that
           paper pages are not.
terminology
“masthead”
“whitespace”
“leading”
“fold”

all derived from print design
“The control which designers know in the print
medium, and often desire in the web medium,
is simply a function of the limitation of the
printed page. We should embrace the fact that
the web doesn’t have the same constraints, and
design for this flexibility. But first, we must
“accept the ebb and flow of things.“

- John Allsopp
“Webdesign is responsive design.
Responsive Webdesign
is web design,
done right.”
           - Andy Clarke
WTF should you care ?
mobile is growing..
FAST
Solutions
native app
web app
mobile website
responsive webdesign
what to choose ?
mmm.. depends..
native ?
Yes, if:
specific device functionality

camera
gyrometer
gps
etc..
native app : issues
- extra build
- extra cost
- many platforms
- even more extra cost
- sharing content
- findability
- walled garden
- duplicate content management
- there are pro's too..
mobile website?
optimized, but not really
mobile website : issues
- redirects
- urls (m. vs www)
- sharing (desktop to mobile and viceversa)
- duplicate content
- often catering for certain brands / types / OS
- duplicate content - duplicate mgmt
- different devices
- expensive and unsatisfying
responsive
a site that is able to adapt to the context
in which it is being viewed.
99 viewports - iPhone's just 1
viewports ?
smartphones
feature phones
tablets
desktops

future ?
benefits responsive webdesign
1 website
1 content
1 url
what's so responsive about that?
1 codebase

diff. functionality

diff. layout
examples
cool
how do you do that ?
rwd consists of
flexible grid
flexible images and media
media queries
stop thinking in pixels
  think proportional
 think percentages
think modular
stop thinking fixed width
960 is dead - 100%
flexible design
make no assumptions
about a browser window's width
media queries
check for - condition
  usually width (also pixel-ratio,orientation)

apply different styles

breakpoints
media queries
around since css 2.1 - media type

<link rel="stylesheet" type="text/css" href="core.css"
  media="screen" />
<link rel="stylesheet" type="text/css" href="print.css"
  media="print" />
media queries since CSS3
<link rel="stylesheet" type="text/css"
  media="screen and (max-device-width: 480px)"
  href="phone.css" />




if screen width < 480px, load phone.css


more media features: http://www.w3.org/TR/css3-mediaqueries/#media1
<link rel="stylesheet" type="text/css"
  media="screen and (min-device-width: 480px)"
  href="desktop.css" />




if screen width > 600px, load desktop.css
media queries in css file
@media screen and (max-device-width: 480px){
  .column {
     float: none;
  }
   .logo {
      margin: 0 auto;
   }
}
media queries summary
       if media query test is met
                     >
           css will be applied
media queries itself
breakpoints ?
common breakpoints
320
480
600
768
960
1200
or when the design starts to look bad
  responsivepx.com
mobile first
apply basic formatting to page

type
colors
margins
mobile first pt.2
media queries for bigger screens
progressive enhancement

> less capable browsers will always be served
a readable site
total width ?
width:100%
max-width 1120, 1600, 1920 ..

dependent on:
- content
- modules
- design proportions
grid
helps to build modular
forget 960
look at responsive grids
build your own!
tools
modular grid extension
     modulargrid.org/#app
responsinator
     responsinator.com
'my' best practice
use a max-width
use a flexible width
design fluid modules
mobile first
serve basic stylesheet first

type
colors
margins
progressive enhancement
add css through mediaqueries

> less capable browsers will always be served
a readable site
build your own grid


    (target % context) * 100 = result



720 in 940
76,595744680851063829787234042553 %

1 col (55 in 1200) :
4,5833333333333333333333333333333 %
flexible modules

easy to "place" in the layout

order in DOM becomes even more important

left to right = top to bottom (mostly)
fluid media
.entry-content img, .widget img
{ max-width: 100%; }

embed, object, video {
max-width: 100%;
height: auto;
}
more (good) practices
try using CSS3 and svg
polyfills
   css3-mediaqueries-js
   respond.js
   modernizr

new developments (cssgrid, flexbox,..)
some resources
responsive webdesign - ethan marcotte
(abookapart)

alistapart.com/articles/responsive-web-design

mediaqueri.es
wordpress
twentyeleven (and successors)
many others, but be aware..
premium is often not. (in general imho)
bottomline
content should be accessible

put user first - think about User eXperience
mobile users will do
       anything and everything
        desktop users will do,
provided it's presented in a usable way.

                                - brad frost
the device can't be an obstacle
think future friendly
thanks.




    questions:
  @tomhermans
tomhermans.com
more resources
the whole argument on media
https://github.com/filamentgroup/Responsive-Images
http://adaptive-images.com/
http://unstoppablerobotninja.com/entry/fluid-images
snippet - media reporter
.site-title:before {
   position: absolute;
   top:0;
   content: "768 and up";
   background-color: hsla(150,60%,
   40%,.7);
   color: white; font-size: 16px;
   padding: 5px 10px;
}
> handy to see which mq is active

Mais conteúdo relacionado

Mais procurados

Responsive Web Design - but for real!
Responsive Web Design - but for real!Responsive Web Design - but for real!
Responsive Web Design - but for real!Rudy Rigot
 
Responsive web design
Responsive web designResponsive web design
Responsive web designRuss Weakley
 
6 key learnings for responsive webdesign
6 key learnings for responsive webdesign6 key learnings for responsive webdesign
6 key learnings for responsive webdesignBart De Waele
 
Specialise or cross-skill
Specialise or cross-skillSpecialise or cross-skill
Specialise or cross-skillRuss Weakley
 
Web design and development trends
Web design and development  trendsWeb design and development  trends
Web design and development trendsCool Sky
 
Strategy for a Responsive UX
Strategy for a Responsive UXStrategy for a Responsive UX
Strategy for a Responsive UXNuno MB Rodrigues
 
Beyond Responsive Web Design
Beyond Responsive Web DesignBeyond Responsive Web Design
Beyond Responsive Web Designarborwebsolutions
 
The future of BYU web design
The future of BYU web designThe future of BYU web design
The future of BYU web designNate Walton
 
Responsive UI using CSS Media Query
Responsive UI using CSS Media QueryResponsive UI using CSS Media Query
Responsive UI using CSS Media QueryNeev Technologies
 
Responsive Web Design for Universal Access 2016
Responsive Web Design for Universal Access 2016Responsive Web Design for Universal Access 2016
Responsive Web Design for Universal Access 2016Kate Walser
 
Let's get accessible!
Let's get accessible!Let's get accessible!
Let's get accessible!Tady Walsh
 
Using Responsive Web Design To Make Your Web Work Everywhere
Using Responsive Web Design To Make Your Web Work Everywhere Using Responsive Web Design To Make Your Web Work Everywhere
Using Responsive Web Design To Make Your Web Work Everywhere Chris Love
 
Responsive Design
Responsive DesignResponsive Design
Responsive DesignSara Cannon
 
Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...
Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...
Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...Bootstrap Creative
 
Bootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book SampleBootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book SampleBootstrap Creative
 
Responsive Web Design Tutorial PDF for Beginners
Responsive Web Design Tutorial PDF for BeginnersResponsive Web Design Tutorial PDF for Beginners
Responsive Web Design Tutorial PDF for BeginnersBootstrap Creative
 
How to Act Like an Agency within a Company: UX for the Enterprise
How to Act Like an Agency within a Company: UX for the EnterpriseHow to Act Like an Agency within a Company: UX for the Enterprise
How to Act Like an Agency within a Company: UX for the EnterpriseFlashGuy13
 

Mais procurados (20)

Responsive Web Design - but for real!
Responsive Web Design - but for real!Responsive Web Design - but for real!
Responsive Web Design - but for real!
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
6 key learnings for responsive webdesign
6 key learnings for responsive webdesign6 key learnings for responsive webdesign
6 key learnings for responsive webdesign
 
Specialise or cross-skill
Specialise or cross-skillSpecialise or cross-skill
Specialise or cross-skill
 
Web design and development trends
Web design and development  trendsWeb design and development  trends
Web design and development trends
 
Strategy for a Responsive UX
Strategy for a Responsive UXStrategy for a Responsive UX
Strategy for a Responsive UX
 
Beyond Responsive Web Design
Beyond Responsive Web DesignBeyond Responsive Web Design
Beyond Responsive Web Design
 
The future of BYU web design
The future of BYU web designThe future of BYU web design
The future of BYU web design
 
Responsive UI using CSS Media Query
Responsive UI using CSS Media QueryResponsive UI using CSS Media Query
Responsive UI using CSS Media Query
 
Responsive Web Design for Universal Access 2016
Responsive Web Design for Universal Access 2016Responsive Web Design for Universal Access 2016
Responsive Web Design for Universal Access 2016
 
Let's get accessible!
Let's get accessible!Let's get accessible!
Let's get accessible!
 
Using Responsive Web Design To Make Your Web Work Everywhere
Using Responsive Web Design To Make Your Web Work Everywhere Using Responsive Web Design To Make Your Web Work Everywhere
Using Responsive Web Design To Make Your Web Work Everywhere
 
Responsive Design
Responsive DesignResponsive Design
Responsive Design
 
Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...
Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...
Web Development Tutorial Workshop for Beginners - Learn Responsive Web Design...
 
Bootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book SampleBootstrap 4 Online Training Course Book Sample
Bootstrap 4 Online Training Course Book Sample
 
Ui and ux principles
Ui and ux principlesUi and ux principles
Ui and ux principles
 
Responsive Web Design Tutorial PDF for Beginners
Responsive Web Design Tutorial PDF for BeginnersResponsive Web Design Tutorial PDF for Beginners
Responsive Web Design Tutorial PDF for Beginners
 
How to Act Like an Agency within a Company: UX for the Enterprise
How to Act Like an Agency within a Company: UX for the EnterpriseHow to Act Like an Agency within a Company: UX for the Enterprise
How to Act Like an Agency within a Company: UX for the Enterprise
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 

Destaque

Infocon Bangladesh 2016
Infocon Bangladesh 2016Infocon Bangladesh 2016
Infocon Bangladesh 2016Prime Infoserv
 
GoDaddy Overview - August 2015
GoDaddy Overview - August 2015GoDaddy Overview - August 2015
GoDaddy Overview - August 2015godaddyir
 
Top Magento Websites Beautifully Rendered by webguru-india.com
Top Magento Websites Beautifully Rendered by webguru-india.comTop Magento Websites Beautifully Rendered by webguru-india.com
Top Magento Websites Beautifully Rendered by webguru-india.comWebGuru Infosystems Pvt. Ltd.
 
WebGuru Builds Professional Websites For Small Businesses
WebGuru Builds Professional Websites For Small BusinessesWebGuru Builds Professional Websites For Small Businesses
WebGuru Builds Professional Websites For Small BusinessesWebGuru Infosystems Pvt. Ltd.
 
Blogs and Wikis in Science teaching
Blogs and Wikis in Science teachingBlogs and Wikis in Science teaching
Blogs and Wikis in Science teachingDanny Nicholson
 
Run Your Business Like a Bike Shop
Run Your Business Like a Bike ShopRun Your Business Like a Bike Shop
Run Your Business Like a Bike ShopShawn Pfunder
 
End Point Security - K7
End Point Security - K7End Point Security - K7
End Point Security - K7Prime Infoserv
 
Digital Presence: Websites and SEO (GoDaddy)
Digital Presence: Websites and SEO (GoDaddy)Digital Presence: Websites and SEO (GoDaddy)
Digital Presence: Websites and SEO (GoDaddy)Localogy
 
The Handy Tool Kit For Launching & Measuring a Remarkable Campaign
The Handy Tool Kit For Launching & Measuring a Remarkable CampaignThe Handy Tool Kit For Launching & Measuring a Remarkable Campaign
The Handy Tool Kit For Launching & Measuring a Remarkable CampaignLionbridge
 
Your Complete Guide to Instagram Marketing + Special Tool Kit!
Your Complete Guide to Instagram Marketing + Special Tool Kit! Your Complete Guide to Instagram Marketing + Special Tool Kit!
Your Complete Guide to Instagram Marketing + Special Tool Kit! Alexandra Maia
 
Everybody is connected with the brand
Everybody is connected with the brandEverybody is connected with the brand
Everybody is connected with the brandRAADHUIS
 
Investment Incentives Benefits in Israel
Investment Incentives Benefits in IsraelInvestment Incentives Benefits in Israel
Investment Incentives Benefits in IsraelSharon Weshler
 
Google Its Not Just A Search Engine
Google Its Not Just A Search EngineGoogle Its Not Just A Search Engine
Google Its Not Just A Search EngineKaren Brooks
 
SMEs 61st business climate survey - July 2015
SMEs 61st business climate survey - July 2015SMEs 61st business climate survey - July 2015
SMEs 61st business climate survey - July 2015Bpifrance
 
Thiết kế logo Dự án bất động sản La casta - Brand guidelines - Adina Việt Nam
Thiết kế logo Dự án bất động sản La casta  - Brand guidelines - Adina Việt NamThiết kế logo Dự án bất động sản La casta  - Brand guidelines - Adina Việt Nam
Thiết kế logo Dự án bất động sản La casta - Brand guidelines - Adina Việt NamMrThong1
 

Destaque (19)

Infocon Bangladesh 2016
Infocon Bangladesh 2016Infocon Bangladesh 2016
Infocon Bangladesh 2016
 
Logo design fundamentals with webguru india
Logo design fundamentals with webguru indiaLogo design fundamentals with webguru india
Logo design fundamentals with webguru india
 
Exclusive Christmas Treat from WebGuru
Exclusive Christmas Treat from WebGuruExclusive Christmas Treat from WebGuru
Exclusive Christmas Treat from WebGuru
 
GoDaddy Overview - August 2015
GoDaddy Overview - August 2015GoDaddy Overview - August 2015
GoDaddy Overview - August 2015
 
Top Magento Websites Beautifully Rendered by webguru-india.com
Top Magento Websites Beautifully Rendered by webguru-india.comTop Magento Websites Beautifully Rendered by webguru-india.com
Top Magento Websites Beautifully Rendered by webguru-india.com
 
WebGuru Builds Professional Websites For Small Businesses
WebGuru Builds Professional Websites For Small BusinessesWebGuru Builds Professional Websites For Small Businesses
WebGuru Builds Professional Websites For Small Businesses
 
Blogs and Wikis in Science teaching
Blogs and Wikis in Science teachingBlogs and Wikis in Science teaching
Blogs and Wikis in Science teaching
 
Run Your Business Like a Bike Shop
Run Your Business Like a Bike ShopRun Your Business Like a Bike Shop
Run Your Business Like a Bike Shop
 
Namecheap vs Godaddy
Namecheap vs GodaddyNamecheap vs Godaddy
Namecheap vs Godaddy
 
End Point Security - K7
End Point Security - K7End Point Security - K7
End Point Security - K7
 
Digital Presence: Websites and SEO (GoDaddy)
Digital Presence: Websites and SEO (GoDaddy)Digital Presence: Websites and SEO (GoDaddy)
Digital Presence: Websites and SEO (GoDaddy)
 
Kompass brandbook
Kompass brandbookKompass brandbook
Kompass brandbook
 
The Handy Tool Kit For Launching & Measuring a Remarkable Campaign
The Handy Tool Kit For Launching & Measuring a Remarkable CampaignThe Handy Tool Kit For Launching & Measuring a Remarkable Campaign
The Handy Tool Kit For Launching & Measuring a Remarkable Campaign
 
Your Complete Guide to Instagram Marketing + Special Tool Kit!
Your Complete Guide to Instagram Marketing + Special Tool Kit! Your Complete Guide to Instagram Marketing + Special Tool Kit!
Your Complete Guide to Instagram Marketing + Special Tool Kit!
 
Everybody is connected with the brand
Everybody is connected with the brandEverybody is connected with the brand
Everybody is connected with the brand
 
Investment Incentives Benefits in Israel
Investment Incentives Benefits in IsraelInvestment Incentives Benefits in Israel
Investment Incentives Benefits in Israel
 
Google Its Not Just A Search Engine
Google Its Not Just A Search EngineGoogle Its Not Just A Search Engine
Google Its Not Just A Search Engine
 
SMEs 61st business climate survey - July 2015
SMEs 61st business climate survey - July 2015SMEs 61st business climate survey - July 2015
SMEs 61st business climate survey - July 2015
 
Thiết kế logo Dự án bất động sản La casta - Brand guidelines - Adina Việt Nam
Thiết kế logo Dự án bất động sản La casta  - Brand guidelines - Adina Việt NamThiết kế logo Dự án bất động sản La casta  - Brand guidelines - Adina Việt Nam
Thiết kế logo Dự án bất động sản La casta - Brand guidelines - Adina Việt Nam
 

Semelhante a Responsive Webdesign: Embracing Flexibility

Stc 2015 preparing legacy projects for responsive design - design issues
Stc 2015   preparing legacy projects for responsive design - design issuesStc 2015   preparing legacy projects for responsive design - design issues
Stc 2015 preparing legacy projects for responsive design - design issuesNeil Perlin
 
Proactive Responsive Design
Proactive Responsive DesignProactive Responsive Design
Proactive Responsive DesignNathan Smith
 
Stc 2015 preparing legacy projects for responsive design - technical issues
Stc 2015   preparing legacy projects for responsive design - technical issuesStc 2015   preparing legacy projects for responsive design - technical issues
Stc 2015 preparing legacy projects for responsive design - technical issuesNeil Perlin
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive WebsitesJoe Seifi
 
Mobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web DesignMobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web DesignCantina
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oiljameswillweb
 
Developing for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic WelterlinDeveloping for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic WelterlinRazorfish
 
Spectrum 16 pmc 16 - preparing legacy projects for responsive design
Spectrum 16   pmc 16 - preparing legacy projects for responsive designSpectrum 16   pmc 16 - preparing legacy projects for responsive design
Spectrum 16 pmc 16 - preparing legacy projects for responsive designNeil Perlin
 
Responsive Design & Mobile First
Responsive Design & Mobile FirstResponsive Design & Mobile First
Responsive Design & Mobile FirstLuke Brooker
 
Responsive web design
Responsive web designResponsive web design
Responsive web designZeeshan Khan
 
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
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJustin Avery
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesVitaly Friedman
 
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
 
Responsive Web Design - Web & PHP Conference - 2013-09-18
Responsive Web Design - Web & PHP Conference - 2013-09-18Responsive Web Design - Web & PHP Conference - 2013-09-18
Responsive Web Design - Web & PHP Conference - 2013-09-18Frédéric Harper
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web DesignJason Harwig
 
Module 08: Responsive Web Design
Module 08: Responsive Web DesignModule 08: Responsive Web Design
Module 08: Responsive Web DesignDaniel Drew Turner
 
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 Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...Scott DeLoach
 
Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)Tirthesh Ganatra
 

Semelhante a Responsive Webdesign: Embracing Flexibility (20)

Stc 2015 preparing legacy projects for responsive design - design issues
Stc 2015   preparing legacy projects for responsive design - design issuesStc 2015   preparing legacy projects for responsive design - design issues
Stc 2015 preparing legacy projects for responsive design - design issues
 
Proactive Responsive Design
Proactive Responsive DesignProactive Responsive Design
Proactive Responsive Design
 
Stc 2015 preparing legacy projects for responsive design - technical issues
Stc 2015   preparing legacy projects for responsive design - technical issuesStc 2015   preparing legacy projects for responsive design - technical issues
Stc 2015 preparing legacy projects for responsive design - technical issues
 
Responsive Websites
Responsive WebsitesResponsive Websites
Responsive Websites
 
Mobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web DesignMobile Monday Presentation: Responsive Web Design
Mobile Monday Presentation: Responsive Web Design
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
 
Developing for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic WelterlinDeveloping for Responsive Design - Frederic Welterlin
Developing for Responsive Design - Frederic Welterlin
 
Spectrum 16 pmc 16 - preparing legacy projects for responsive design
Spectrum 16   pmc 16 - preparing legacy projects for responsive designSpectrum 16   pmc 16 - preparing legacy projects for responsive design
Spectrum 16 pmc 16 - preparing legacy projects for responsive design
 
Responsive Design & Mobile First
Responsive Design & Mobile FirstResponsive Design & Mobile First
Responsive Design & Mobile First
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
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)
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Responsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and TechniquesResponsive Web Design: Clever Tips and Techniques
Responsive Web Design: Clever Tips and Techniques
 
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 - Web & PHP Conference - 2013-09-18
Responsive Web Design - Web & PHP Conference - 2013-09-18Responsive Web Design - Web & PHP Conference - 2013-09-18
Responsive Web Design - Web & PHP Conference - 2013-09-18
 
Responsive Web Design
Responsive Web DesignResponsive Web Design
Responsive Web Design
 
Module 08: Responsive Web Design
Module 08: Responsive Web DesignModule 08: Responsive Web Design
Module 08: Responsive Web Design
 
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 Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
Responsive Content: A CSS-based Approach - MadWorld 2015, Scott DeLoach, Clic...
 
Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)Responsive Web Design (HeadStart TechTalks)
Responsive Web Design (HeadStart TechTalks)
 

Último

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 

Último (20)

Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 

Responsive Webdesign: Embracing Flexibility