SlideShare ist ein Scribd-Unternehmen logo
1 von 34
Downloaden Sie, um offline zu lesen
HTML4 XHTML HTML5
                  The Evolution, Promise and Reality of HTML5

Thursday, March 17, 2011
About Me
                   Senior Web Application Developer Technical Lead Barclaycard
                   US, Wilmington, DE

                   A SCJP Front End Engineer and UX/UI Advocate

                   Open Source Committer to Stripes and blojsom

                   Registered first domain in 1996

                   GnuPG/PGP Fingerprint
                           0248 FAD3 D6BE 008C 27C8 7A72 7249 DE33 22A5 2C82

                   Still plays D&D (not exactly)

                   Contact: tstone@petmystone.com



Thursday, March 17, 2011
2000




                                   1996               2004        2008



                  EVOLUTION
    PROJECT




                  1996..2008
    DATE                                  CLIENT
                  MARCH 16, 2011                   RICHMOND JUG
Thursday, March 17, 2011
12 Years Ago...

                   HTML 2/3.2
                   Tables! JavaScript! Oh, My!

                   First Browser Support 12/1994

                   W3C Recommendation 1/1997




Thursday, March 17, 2011
Thursday, March 17, 2011
HTML 4/4.01
                   Quirks vs Standards Mode

                   First Browser Support 10/1996

                   W3C Recommendation 12/1999




Thursday, March 17, 2011
XHTML 1.0/1.1

                   First Browser Support c. 1999

                   W3C Recommendation 1/2000 & 5/2001

                   "To Hell With Bad Browsers" - Zeldman, 2/2001
                   "Draconian"
                   "Valid XHTML is really just Invalid HTML 4.01"




Thursday, March 17, 2011
XHTML 2.0
                   Nevermind

                   Incompatible with XHTML 1.x

                   XHTML2WG announces support of HTML5 5/2007




Thursday, March 17, 2011
HTML5/XHTML5
                   Buzzword Ready.
                   Cool Logo.




Thursday, March 17, 2011
Is HTML5 Ready Yet?



Thursday, March 17, 2011
Thursday, March 17, 2011
http://www.flickr.com/photos/andyi/




                  PROMISE
    PROJECT




                  INTEROPERABILITY
    DATE                           CLIENT
                  MARCH 16, 2011            RICHMOND JUG
Thursday, March 17, 2011
Promise

                   WHATWG
                   Web Hypertext Application Technology Working Group


                   A Living Document of Standards
                   "HTML is the New HTML5" - Ian Hickson, 1/19/11

                   HTML5 will be a SNAPSHOT

                   But… But... HTML is not JSON




Thursday, March 17, 2011
Where We Are


                   A Theme Rises
                   "Implementation Trumps Specification"
                    Molly Holzschlag, Opera @ Philly ETE 2010


                   CSS 2.1?




Thursday, March 17, 2011
Where We Are Going

                   A bellwether
                   Omniture Summit 2010

                   "This is application development now people."
                    Molly Holzschlag, Opera




Thursday, March 17, 2011
APIs
                   22 APIs                    Native
                                              getElementsByClassName
                   Highlights
                                              Web Workers*
                           applicationCache
                                              Web Sockets*
                           sessionStorage
                                              Geolocation API
                           localStorage

                           Native DnD (ha!)



Thursday, March 17, 2011
Deprecation
                   Many HTML 3/4 Elements Gone      valign

                           frameset, frames,        link, vlink, alink,
                           noframes                 text on body
                           basefont, big, center,   bgcolor
                           font, s, strike, tt, u
                                                    height and width
                   Replaced Elements
                                                    scrolling on iframe
                           abbr ! acronym,
                           object ! applet,         hspace, vspace
                           ul ! dir
                                                    cellpadding,
                   Bye Bye Attributes               cellspacing, border
                                                    on table
                           align




Thursday, March 17, 2011
CODE
                  Awww... Yeah!

Thursday, March 17, 2011
Modernizr

                   www.modernizr.com, v1.7

                   A lightweight JavaScript Library for implementing
                   Progressive Enhancement

                   Simple to Use




Thursday, March 17, 2011
Modernizr


                  <!doctype html>
                  <html class="no-js">
                  …
                      <script type="text/javascript"
                              src="/path/to/modernizr-1.7.min.js"></script>
                  …
                  </html>




Thursday, March 17, 2011
Modernizr


                  <!doctype html>
                  <html class="no-js">
                  …
                      <script type="text/javascript"
                              src="/path/to/modernizr-1.7.min.js"></script>
                  …
                  </html>




Thursday, March 17, 2011
Using Modernizr
                   Leverage What You Know

                   JavaScript
                   (function() {
                     if(Modernizr.borderradius) {
                       // enhance
                     } else {
                       // gracefully degrade
                     }
                   })();

                   CSS
                   .borderradius div aside {
                      // enhance
                   }
                   .no-borderradius div aside {
                      // gracefully degrade
                   }




Thursday, March 17, 2011
New Semantic
                  Elements

                   header, footer, nav, section, article, aside, meter,
                   progress

                   Arising from popularity of weblogs (Wordpress?)




Thursday, March 17, 2011
Semantics and IE

                           New Semantics not supported in IE 7 & 8

                           Add support
                           <!--[if lt IE 9]>
                           <script type="text/javascript">
                             document.createElement("nav");
                             …
                           <![endif]>




Thursday, March 17, 2011
Web Sockets

                   Think "Stateful Connection to Remote Server"

                   No polling

                   Implementation and Security Concerns

                   Separate Specification
                   www.w3.org/TR/websockets/




Thursday, March 17, 2011
Storage APIs
                   localStorage

                           persistent after browser session!

                           personal data?
                   (function() {
                     if(Modernizr.localStorage || window.localStorage) {
                       window.localStorage.setItem(name, value);
                       window.localStorage.getItem(name);
                     } else {
                       // gracefully degrade
                     }
                   })();


                   sessionStorage

                           Similar API to localStorage

                           not persistent across session (browser close)




Thursday, March 17, 2011
Web Workers
                   Think "multithreaded scripting engine"

                   Separate specification in WHATWG/W3C

                   Uses a messaging event API

                   postMessage

                   onMessage




Thursday, March 17, 2011
Video and Audio


                   Where promise, interop, and commerce collide

                   Many participants, Many browsers, little
                   agreement

                   Who To Watch?




Thursday, March 17, 2011
Video and Audio
                  Codecs
                   Video Codecs and Support

                   H.264 (IE9, Safari, Chrome, iOS)
                   Theora (FF, Chrome, Opera)
                   VP8 (IE9, with codec; FF4, Chrome, Opera)

                   Audio Codecs and Support

                   AAC (Safari, Chrome, iOS)
                   MP3 (IE9, Safari, Chrome, iOS)
                   Vorbis/Ogg (FF, Chrome, Opera)




Thursday, March 17, 2011
Video and Audio Code
                   Video (with Flash Support fallback!)
                   <video controls>
                     <source src="/path/to/file.mp4">
                     <source src="/path/to/file.ogv">
                     <source src="/path/to/file.webm">
                     <object ...> <!-- Flash Player --> </object>
                     <p>No support</p>
                   </video>

                   Audio Codecs and Support


                   /* in css, using Modernizr */
                   .audio .dl-mp3 { display: none; }
                   .no-audio .dl-mp3 { display:block; }
                   ...
                   <audio controls>
                     <source src="/path/to/file.ogg">
                     <source src="/path/to/file.mp3">
                   </audio>
                   <p class="dl-mp3"><a href="/path/to/file.mp3">Download</a></p>




Thursday, March 17, 2011
@fontface
                   Font Support, Finally

                   Distribution Concerns

                   Sample
                   @fontface {
                     font-family: "myawesomemetalfont";
                     src: url(/fonts/font.eot);
                     src: url(/fonts/font.woff) format ('woff'),
                          url(/fonts/font.ttf) format ('ttf');
                     font-weight: normal;
                   }



Thursday, March 17, 2011
So Much More...
                  Recommended Reading

Thursday, March 17, 2011
HTML5 and CSS3
                   Pragmatic Bookshelf, Brian Hogan, 2010

                   Unobtrusive Ajax
                   O'Reilly Shortcuts, Jesse Skinner, 2007

                   JavaScript: The Good Parts
                   O'Reilly, Douglas Crockford, 2010

                   JavaScript Patterns
                   O'Reilly, Stoyan Stefanov, 2010

                   Dive into HTML5
                   diveintohtml5.org, Mark Pilgrim

                   WHATWG Blog
                   blog.whatwg.org

                   Surfin' Safari, the WebKit Blog
                   webkit.org/blog

                   A List Apart
                   alistapart.com




Thursday, March 17, 2011
Questions..Answers



Thursday, March 17, 2011

Weitere ähnliche Inhalte

Andere mochten auch

Sistemes Joc
Sistemes JocSistemes Joc
Sistemes Joc
phidalg2
 
Press Release Prevenção e Segurança Rodoviária
Press Release   Prevenção e Segurança RodoviáriaPress Release   Prevenção e Segurança Rodoviária
Press Release Prevenção e Segurança Rodoviária
guest257b5
 
Electroserv E482 leaflet
Electroserv  E482 leafletElectroserv  E482 leaflet
Electroserv E482 leaflet
Jason McIntosh
 

Andere mochten auch (20)

Html5 Future of WEB
Html5 Future of WEBHtml5 Future of WEB
Html5 Future of WEB
 
Sistemes Joc
Sistemes JocSistemes Joc
Sistemes Joc
 
45
4545
45
 
Lat 2 voz pasiva
Lat 2 voz pasivaLat 2 voz pasiva
Lat 2 voz pasiva
 
Estudio sobre que quieren ser los niños españoles de mayores (por Adecco)
Estudio sobre que quieren ser los niños españoles de mayores (por Adecco)Estudio sobre que quieren ser los niños españoles de mayores (por Adecco)
Estudio sobre que quieren ser los niños españoles de mayores (por Adecco)
 
Press Release Prevenção e Segurança Rodoviária
Press Release   Prevenção e Segurança RodoviáriaPress Release   Prevenção e Segurança Rodoviária
Press Release Prevenção e Segurança Rodoviária
 
CONVOCATORIA FLORENCIA ROCK 2015
CONVOCATORIA FLORENCIA ROCK 2015CONVOCATORIA FLORENCIA ROCK 2015
CONVOCATORIA FLORENCIA ROCK 2015
 
Frogfer Tutela
Frogfer TutelaFrogfer Tutela
Frogfer Tutela
 
Re-engineering Eclipse MDT/OCL for Xtext
Re-engineering Eclipse MDT/OCL for XtextRe-engineering Eclipse MDT/OCL for Xtext
Re-engineering Eclipse MDT/OCL for Xtext
 
Como gano dinero con factura móvil
Como gano dinero con factura móvilComo gano dinero con factura móvil
Como gano dinero con factura móvil
 
LMRA
LMRALMRA
LMRA
 
Technology’s Impact on the Future of Meeting Space — Will You Be Ready?
Technology’s Impact on the Future of Meeting Space — Will You Be Ready?Technology’s Impact on the Future of Meeting Space — Will You Be Ready?
Technology’s Impact on the Future of Meeting Space — Will You Be Ready?
 
Lean, Green, and Clean: Environmental Practices in Collegiate Foodservice
Lean, Green, and Clean: Environmental Practices in Collegiate FoodserviceLean, Green, and Clean: Environmental Practices in Collegiate Foodservice
Lean, Green, and Clean: Environmental Practices in Collegiate Foodservice
 
12comp[1]
12comp[1]12comp[1]
12comp[1]
 
Portfolio Flávio Medeiros
Portfolio Flávio MedeirosPortfolio Flávio Medeiros
Portfolio Flávio Medeiros
 
Electroserv E482 leaflet
Electroserv  E482 leafletElectroserv  E482 leaflet
Electroserv E482 leaflet
 
Khokhana Resettlement Planning
Khokhana Resettlement PlanningKhokhana Resettlement Planning
Khokhana Resettlement Planning
 
Clase 2 educ secundaria
Clase 2 educ secundariaClase 2 educ secundaria
Clase 2 educ secundaria
 
El rol del community manager en las organizaciones - Casos de éxito en la emp...
El rol del community manager en las organizaciones - Casos de éxito en la emp...El rol del community manager en las organizaciones - Casos de éxito en la emp...
El rol del community manager en las organizaciones - Casos de éxito en la emp...
 
Integrated Information System for Construction Operations
Integrated Information System for Construction OperationsIntegrated Information System for Construction Operations
Integrated Information System for Construction Operations
 

Ähnlich wie HTML XHTML HTML5

Taiwan Web Standards Talk 2011
Taiwan Web Standards Talk 2011Taiwan Web Standards Talk 2011
Taiwan Web Standards Talk 2011
Zi Bin Cheah
 
Is it time to start using HTML 5
Is it time to start using HTML 5Is it time to start using HTML 5
Is it time to start using HTML 5
Ravi Raj
 
JavaOne 2011 - Going Mobile With Java Based Technologies Today
JavaOne 2011 - Going Mobile With Java Based Technologies TodayJavaOne 2011 - Going Mobile With Java Based Technologies Today
JavaOne 2011 - Going Mobile With Java Based Technologies Today
Wesley Hales
 
HTML5: Building the Next Generation of Web Applications
HTML5: Building the Next Generation of Web ApplicationsHTML5: Building the Next Generation of Web Applications
HTML5: Building the Next Generation of Web Applications
Chrome Developer Relations
 
Opera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsOpera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 Standards
Zi Bin Cheah
 
Mwrc2011 cookbook design patterns
Mwrc2011 cookbook design patternsMwrc2011 cookbook design patterns
Mwrc2011 cookbook design patterns
jtimberman
 
Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011
Bachkoutou Toutou
 

Ähnlich wie HTML XHTML HTML5 (20)

Taiwan Web Standards Talk 2011
Taiwan Web Standards Talk 2011Taiwan Web Standards Talk 2011
Taiwan Web Standards Talk 2011
 
Groke
GrokeGroke
Groke
 
Node js techtalksto
Node js techtalkstoNode js techtalksto
Node js techtalksto
 
HTML5 & CSS3 in Drupal (on the Bayou)
HTML5 & CSS3 in Drupal (on the Bayou)HTML5 & CSS3 in Drupal (on the Bayou)
HTML5 & CSS3 in Drupal (on the Bayou)
 
What's New in GWT 2.2
What's New in GWT 2.2What's New in GWT 2.2
What's New in GWT 2.2
 
The Fast, The Slow and the Lazy
The Fast, The Slow and the LazyThe Fast, The Slow and the Lazy
The Fast, The Slow and the Lazy
 
Is it time to start using HTML 5
Is it time to start using HTML 5Is it time to start using HTML 5
Is it time to start using HTML 5
 
JavaOne 2011 - Going Mobile With Java Based Technologies Today
JavaOne 2011 - Going Mobile With Java Based Technologies TodayJavaOne 2011 - Going Mobile With Java Based Technologies Today
JavaOne 2011 - Going Mobile With Java Based Technologies Today
 
Secrets of the GWT
Secrets of the GWTSecrets of the GWT
Secrets of the GWT
 
Flash Platform Ovierview
Flash Platform OvierviewFlash Platform Ovierview
Flash Platform Ovierview
 
HTML5: Building the Next Generation of Web Applications
HTML5: Building the Next Generation of Web ApplicationsHTML5: Building the Next Generation of Web Applications
HTML5: Building the Next Generation of Web Applications
 
Opera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsOpera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 Standards
 
HTML5 and XHTML2
HTML5 and XHTML2HTML5 and XHTML2
HTML5 and XHTML2
 
Mwrc2011 cookbook design patterns
Mwrc2011 cookbook design patternsMwrc2011 cookbook design patterns
Mwrc2011 cookbook design patterns
 
Anarchist guide to titanium ui
Anarchist guide to titanium uiAnarchist guide to titanium ui
Anarchist guide to titanium ui
 
HTML5 and jQuery for Flex Developers
HTML5 and jQuery for Flex DevelopersHTML5 and jQuery for Flex Developers
HTML5 and jQuery for Flex Developers
 
Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
Flowdock's full-text search with MongoDB
Flowdock's full-text search with MongoDBFlowdock's full-text search with MongoDB
Flowdock's full-text search with MongoDB
 
Better front-end development in Atlassian plugins
Better front-end development in Atlassian pluginsBetter front-end development in Atlassian plugins
Better front-end development in Atlassian plugins
 

Kürzlich hochgeladen

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
vu2urc
 

Kürzlich hochgeladen (20)

Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?What Are The Drone Anti-jamming Systems Technology?
What Are The Drone Anti-jamming Systems Technology?
 
Advantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your BusinessAdvantages of Hiring UIUX Design Service Providers for Your Business
Advantages of Hiring UIUX Design Service Providers for Your Business
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 

HTML XHTML HTML5

  • 1. HTML4 XHTML HTML5 The Evolution, Promise and Reality of HTML5 Thursday, March 17, 2011
  • 2. About Me Senior Web Application Developer Technical Lead Barclaycard US, Wilmington, DE A SCJP Front End Engineer and UX/UI Advocate Open Source Committer to Stripes and blojsom Registered first domain in 1996 GnuPG/PGP Fingerprint 0248 FAD3 D6BE 008C 27C8 7A72 7249 DE33 22A5 2C82 Still plays D&D (not exactly) Contact: tstone@petmystone.com Thursday, March 17, 2011
  • 3. 2000 1996 2004 2008 EVOLUTION PROJECT 1996..2008 DATE CLIENT MARCH 16, 2011 RICHMOND JUG Thursday, March 17, 2011
  • 4. 12 Years Ago... HTML 2/3.2 Tables! JavaScript! Oh, My! First Browser Support 12/1994 W3C Recommendation 1/1997 Thursday, March 17, 2011
  • 6. HTML 4/4.01 Quirks vs Standards Mode First Browser Support 10/1996 W3C Recommendation 12/1999 Thursday, March 17, 2011
  • 7. XHTML 1.0/1.1 First Browser Support c. 1999 W3C Recommendation 1/2000 & 5/2001 "To Hell With Bad Browsers" - Zeldman, 2/2001 "Draconian" "Valid XHTML is really just Invalid HTML 4.01" Thursday, March 17, 2011
  • 8. XHTML 2.0 Nevermind Incompatible with XHTML 1.x XHTML2WG announces support of HTML5 5/2007 Thursday, March 17, 2011
  • 9. HTML5/XHTML5 Buzzword Ready. Cool Logo. Thursday, March 17, 2011
  • 10. Is HTML5 Ready Yet? Thursday, March 17, 2011
  • 12. http://www.flickr.com/photos/andyi/ PROMISE PROJECT INTEROPERABILITY DATE CLIENT MARCH 16, 2011 RICHMOND JUG Thursday, March 17, 2011
  • 13. Promise WHATWG Web Hypertext Application Technology Working Group A Living Document of Standards "HTML is the New HTML5" - Ian Hickson, 1/19/11 HTML5 will be a SNAPSHOT But… But... HTML is not JSON Thursday, March 17, 2011
  • 14. Where We Are A Theme Rises "Implementation Trumps Specification" Molly Holzschlag, Opera @ Philly ETE 2010 CSS 2.1? Thursday, March 17, 2011
  • 15. Where We Are Going A bellwether Omniture Summit 2010 "This is application development now people." Molly Holzschlag, Opera Thursday, March 17, 2011
  • 16. APIs 22 APIs Native getElementsByClassName Highlights Web Workers* applicationCache Web Sockets* sessionStorage Geolocation API localStorage Native DnD (ha!) Thursday, March 17, 2011
  • 17. Deprecation Many HTML 3/4 Elements Gone valign frameset, frames, link, vlink, alink, noframes text on body basefont, big, center, bgcolor font, s, strike, tt, u height and width Replaced Elements scrolling on iframe abbr ! acronym, object ! applet, hspace, vspace ul ! dir cellpadding, Bye Bye Attributes cellspacing, border on table align Thursday, March 17, 2011
  • 18. CODE Awww... Yeah! Thursday, March 17, 2011
  • 19. Modernizr www.modernizr.com, v1.7 A lightweight JavaScript Library for implementing Progressive Enhancement Simple to Use Thursday, March 17, 2011
  • 20. Modernizr <!doctype html> <html class="no-js"> … <script type="text/javascript" src="/path/to/modernizr-1.7.min.js"></script> … </html> Thursday, March 17, 2011
  • 21. Modernizr <!doctype html> <html class="no-js"> … <script type="text/javascript" src="/path/to/modernizr-1.7.min.js"></script> … </html> Thursday, March 17, 2011
  • 22. Using Modernizr Leverage What You Know JavaScript (function() { if(Modernizr.borderradius) { // enhance } else { // gracefully degrade } })(); CSS .borderradius div aside { // enhance } .no-borderradius div aside { // gracefully degrade } Thursday, March 17, 2011
  • 23. New Semantic Elements header, footer, nav, section, article, aside, meter, progress Arising from popularity of weblogs (Wordpress?) Thursday, March 17, 2011
  • 24. Semantics and IE New Semantics not supported in IE 7 & 8 Add support <!--[if lt IE 9]> <script type="text/javascript"> document.createElement("nav"); … <![endif]> Thursday, March 17, 2011
  • 25. Web Sockets Think "Stateful Connection to Remote Server" No polling Implementation and Security Concerns Separate Specification www.w3.org/TR/websockets/ Thursday, March 17, 2011
  • 26. Storage APIs localStorage persistent after browser session! personal data? (function() { if(Modernizr.localStorage || window.localStorage) { window.localStorage.setItem(name, value); window.localStorage.getItem(name); } else { // gracefully degrade } })(); sessionStorage Similar API to localStorage not persistent across session (browser close) Thursday, March 17, 2011
  • 27. Web Workers Think "multithreaded scripting engine" Separate specification in WHATWG/W3C Uses a messaging event API postMessage onMessage Thursday, March 17, 2011
  • 28. Video and Audio Where promise, interop, and commerce collide Many participants, Many browsers, little agreement Who To Watch? Thursday, March 17, 2011
  • 29. Video and Audio Codecs Video Codecs and Support H.264 (IE9, Safari, Chrome, iOS) Theora (FF, Chrome, Opera) VP8 (IE9, with codec; FF4, Chrome, Opera) Audio Codecs and Support AAC (Safari, Chrome, iOS) MP3 (IE9, Safari, Chrome, iOS) Vorbis/Ogg (FF, Chrome, Opera) Thursday, March 17, 2011
  • 30. Video and Audio Code Video (with Flash Support fallback!) <video controls> <source src="/path/to/file.mp4"> <source src="/path/to/file.ogv"> <source src="/path/to/file.webm"> <object ...> <!-- Flash Player --> </object> <p>No support</p> </video> Audio Codecs and Support /* in css, using Modernizr */ .audio .dl-mp3 { display: none; } .no-audio .dl-mp3 { display:block; } ... <audio controls> <source src="/path/to/file.ogg"> <source src="/path/to/file.mp3"> </audio> <p class="dl-mp3"><a href="/path/to/file.mp3">Download</a></p> Thursday, March 17, 2011
  • 31. @fontface Font Support, Finally Distribution Concerns Sample @fontface { font-family: "myawesomemetalfont"; src: url(/fonts/font.eot); src: url(/fonts/font.woff) format ('woff'), url(/fonts/font.ttf) format ('ttf'); font-weight: normal; } Thursday, March 17, 2011
  • 32. So Much More... Recommended Reading Thursday, March 17, 2011
  • 33. HTML5 and CSS3 Pragmatic Bookshelf, Brian Hogan, 2010 Unobtrusive Ajax O'Reilly Shortcuts, Jesse Skinner, 2007 JavaScript: The Good Parts O'Reilly, Douglas Crockford, 2010 JavaScript Patterns O'Reilly, Stoyan Stefanov, 2010 Dive into HTML5 diveintohtml5.org, Mark Pilgrim WHATWG Blog blog.whatwg.org Surfin' Safari, the WebKit Blog webkit.org/blog A List Apart alistapart.com Thursday, March 17, 2011