SlideShare una empresa de Scribd logo
1 de 34
Descargar para leer sin conexión
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

Más contenido relacionado

Destacado

Sistemes Joc
Sistemes JocSistemes Joc
Sistemes Jocphidalg2
 
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)Alfredo Vela Zancada
 
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áriaguest257b5
 
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 XtextEdward Willink
 
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óvilGabriel Neuman
 
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?Social Tables
 
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 FoodserviceNational Restaurant Association
 
Electroserv E482 leaflet
Electroserv  E482 leafletElectroserv  E482 leaflet
Electroserv E482 leafletJason McIntosh
 
Khokhana Resettlement Planning
Khokhana Resettlement PlanningKhokhana Resettlement Planning
Khokhana Resettlement PlanningNishaj Kunwar
 
Clase 2 educ secundaria
Clase 2 educ secundariaClase 2 educ secundaria
Clase 2 educ secundariaMaría Villena
 
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...Santiago Bonet
 

Destacado (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
 

Similar a The Evolution, Promise and Reality of HTML5

Taiwan Web Standards Talk 2011
Taiwan Web Standards Talk 2011Taiwan Web Standards Talk 2011
Taiwan Web Standards Talk 2011Zi Bin Cheah
 
Node js techtalksto
Node js techtalkstoNode js techtalksto
Node js techtalkstoJason Diller
 
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)Mediacurrent
 
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 LazyMaurício Linhares
 
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 5Ravi 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 TodayWesley Hales
 
Flash Platform Ovierview
Flash Platform OvierviewFlash Platform Ovierview
Flash Platform Ovierviewluca mezzalira
 
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 ApplicationsChrome Developer Relations
 
Opera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsOpera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsZi Bin Cheah
 
Mwrc2011 cookbook design patterns
Mwrc2011 cookbook design patternsMwrc2011 cookbook design patterns
Mwrc2011 cookbook design patternsjtimberman
 
HTML5 and jQuery for Flex Developers
HTML5 and jQuery for Flex DevelopersHTML5 and jQuery for Flex Developers
HTML5 and jQuery for Flex DevelopersRyan Stewart
 
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 2011Bachkoutou Toutou
 
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 MongoDBFlowdock
 
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 pluginsAtlassian
 

Similar a The Evolution, Promise and Reality of 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
 

Último

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
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 textsMaria Levchenko
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 

Último (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 

The Evolution, Promise and Reality of 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