SlideShare ist ein Scribd-Unternehmen logo
1 von 51
Downloaden Sie, um offline zu lesen
HTML5:
                           About Damn Time
                          Kevin Lawver | kevin@lawver.net | @kplawver




Tuesday, April 20, 2010
A Short History Lesson
                     • HTML 2.0 - 11/1995
                     • HTML 3.2 - 01/1997
                     • HTML 4.01 - 12/1999
                     • XHTML 1.0 - 01/2000
                     • XHTML 1.1 - 05/2001 (no one uses this)
                     • XHTML 2? - Dead as of 12/2009
Tuesday, April 20, 2010
HTML5: Guerilla
                     • The What Working Group (http://
                          whatwg.org) was started by Ian Hickson
                          (then at Opera, now at Google).
                     • Started as a response to what was wrong
                          with XHTML 2 and to move HTML
                          forward.
                     • HTML5 specs brought into W3C in
                          03/2007.


Tuesday, April 20, 2010
So, What’s New?
                     • Document sematics
                     • Form controls
                     • Canvas
                     • Audio and Video as first-class citizens
                     • Offline storage
                     • Embedded meta data inside elements
Tuesday, April 20, 2010
And What’s Gone?
                     • Presentational elements like font, big,
                          center, etc
                     • Presentational attributes like bgcolor,
                          border, etc
                     • Frames, frameset and noframes
                     • acronym (abbr serves both purposes now)

Tuesday, April 20, 2010
A Basic Document
                           http://dev.lawver.net/html5/blank.html




Tuesday, April 20, 2010
<!DOCTYPE html>
                 <html>
                     <head>
                         <title>My Awesome HTML5 Document</title>
                         <meta charset="utf-8"/>
                         <!--[if IE]>
                         <script src="http://html5shiv.googlecode.com/svn/trunk/
                 html5.js"></script>
                         <![endif]-->
                     </head>
                     <body>

                     </body>
                 </html>




Tuesday, April 20, 2010
Things to See
                     • The HTML comment at the top must be
                          there or things will look silly in any current
                          version of Internet Explorer
                     • The DOCTYPE is tiny. Since it’s no longer
                          an “X”, there’s no DTD.
                     • Other than that, not much is different
                          here, right?


Tuesday, April 20, 2010
Document Semantics


                     • No more divs! (OK, OK, fewer divs)
                     • Real semantics: header, footer, section,
                          article & aside




Tuesday, April 20, 2010
Let’s Make a Blog

                     • I used Tumblr, because their templating
                          language won’t get in the way.
                     • It’s live now: http://tedxcreativecoast.com
                          (convenient victim)




Tuesday, April 20, 2010
Let’s look at the
                            masthead...


Tuesday, April 20, 2010
<header>
                     <h1><a href="/">TEDx Creative Coast</a></h1>
                </header>
                <nav class="pages">
                    <ul>
                         <li><a href="/">Home</a></li>
                         <li><a href="/event-details">Event Details</a></li>
                         <li><a href="/speakers">Speakers</a></li>
                         <li><a href="/sponsors">Sponsors</a></li>
                         <li><a href="/about">About TEDx</a></li>
                         <li><a href="/about_tedxcreativecoast">Volunteers and Crew</
                a></li>
                    </ul>
                </nav>




Tuesday, April 20, 2010
Did you notice...

                     • The header element?
                     • That I still used an h1?
                     • That nav is a new element specifically for
                          navigation?




Tuesday, April 20, 2010
A Blog Post...
                          http://dev.lawver.net/html5/tedx.html




Tuesday, April 20, 2010
<article class="hentry text">
                             <h3><a href="http://tedxcreativecoast.com/post/
                             482465925/musicians-welcome">Musicians Welcome</
                             a></h3>
                             <div class="entry-content">
                                ...
                             </div>
                             <details>
                                <a href="http://tedxcreativecoast.com/post/
                          482465925/musicians-welcome">Permalink</a> | posted
                          1 day ago
                             </details>
                          </article>




Tuesday, April 20, 2010
What did you see?



Tuesday, April 20, 2010
Here’s what I saw...
                     • The article element surrounding the post.
                     • The new details element for displaying
                          meta data about the post.
                     • I didn’t use another header element around
                          the h3, but I could have.
                     • Did anyone notice the microformat I snuck
                          in there?


Tuesday, April 20, 2010
And the footer...



Tuesday, April 20, 2010
<footer>
                <nav class="pagination">
                     <ul>
                          <li><details>You are on page 1 of 1.</details></li>
                     <ul>
                </nav>
                <nav>
                     <ul>
                          <li><a href="#">Top</a></li>
                          <li><a href="/">Home</a></li>
                          <li><a href="/about" title="TEDxCreativeCoast About TED and
            TEDx">About</a></li>
                          <li><a href="/mobile">Mobile</a></li>
                          <li><a href="/event-details" title="TEDxCreativeCoast Event
            Details">Event</a></li>
                          <li><a href="/speakers" title="TEDxCreativeCoast
            Presenters">Speakers</a></li>
                          <li><a href="/sponsors" title="TEDxCreativeCoast
            Sponsors">Sponsors</a></li>
                     <ul>
                     <p>This independent TEDx event is operated under license from <a
            href="http://ted.com" target="_blank" title="This independent TEDx event is
            operated under license from TED">TED</a>.</p>
                </nav>
                <details class="theme"></details>
            </footer>
Tuesday, April 20, 2010
And?

                     • The shapely footer element, containing...
                     • multiple nav elements
                     • and a document-wide details element for
                          document cruft.




Tuesday, April 20, 2010
Canvas
                          http://dev.lawver.net/html5/canvas.html




Tuesday, April 20, 2010
Drawing the Web Way

                     • Creates a drawing “area” inside of a
                          document.
                     • Has a javascript API for adding shapes, and
                          allowing for interactivity
                     • Feature-rich and complex drawing API.

Tuesday, April 20, 2010
Abstract it all away!

                     • I use RaphaelJS, which uses Canvas on good
                          browsers and VML in Internet Explorer.
                     • It abstracts away a lot of the complexity
                          and provides a simple but powerful API.
                     • http://raphaeljs.com

Tuesday, April 20, 2010
Demos!



Tuesday, April 20, 2010
Form Elements



Tuesday, April 20, 2010
More Data-Specific
                               Inputs!
                     • We can finally do sliders in the markup
                     • Colors, URLs, e-mail addresses, names,
                          search queries, telephone numbers, and
                          times and dates all have their own input
                          types now!




Tuesday, April 20, 2010
Demo
                          http://dev.lawver.net/html5/forms.html




Tuesday, April 20, 2010
Offline Storage



Tuesday, April 20, 2010
Make Your App
                                Offlineable!
                     • You can create a manifest which gives a list
                          of URLs for your app that declares files to
                          cache, which ones are only available on the
                          network, and fallbacks for failed requests.
                     • Poor cross-browser implementation so far.
                     • A lot like the old Google Gears API.

Tuesday, April 20, 2010
No Demo
                      Because it doesn’t work well enough across multiple
                              browsers to waste time with... yet.




Tuesday, April 20, 2010
Audio & Video



Tuesday, April 20, 2010
No more plugins!



Tuesday, April 20, 2010
Media is a first-class
                          markup citizen now!


Tuesday, April 20, 2010
Demo
                          http://dev.lawver.net/html5/video.html




Tuesday, April 20, 2010
The Markup

                          <video src="movie.m4v" id="my-video"></video>
                          <p>
                               <a href="javascript:play_it()">play</a> |
                               <a href="javascript:pause_it()">pause</a>
                          </p>




Tuesday, April 20, 2010
The Javascript
                          function play_it() {
                              var video = document.getElementById("my-video");
                              video.play();
                          }

                          function pause_it() {
                              var video = document.getElementById("my-video");
                              video.pause();
                          }




Tuesday, April 20, 2010
Problems with video...
                     • There’s a big argument about supported
                           formats. Safari supports h.264, and Firefox
                           only supports Ogg Theora.
                     • There are rumors that Google will open
                           sources their video codec, making this stuff
                           moot.
                     • IE doesn’t support the video element at all.
                     • Works great on the iPad and iPhone
                           though!

Tuesday, April 20, 2010
Microdata



Tuesday, April 20, 2010
Microdata is a way to
                  embed meta data inside
                       of elements.


Tuesday, April 20, 2010
Why?



Tuesday, April 20, 2010
Turn your HTML
                          documents into your
                                  API!


Tuesday, April 20, 2010
Yeah, but we have
                           microformats!


Tuesday, April 20, 2010
But, they’re non-trivial
                    to parse and mis-use
                   some HTML attributes.


Tuesday, April 20, 2010
Ok, fine.
                          http://dev.lawver.net/html5/microdata.html




Tuesday, April 20, 2010
An Address Card
            <ul itemscope itemtype="http://microformats.org/wiki/hcard"
            class="vcard" itemid="http://lawver.net">
                  <li itemprop="fn">Kevin Lawver</li>
                  <li><a href="http://lawver.net" itemprop="url" rel="bookmark"
            class="url">Blog</a></li>
                  <li itemprop="org">Music Intelligence Solutions</li>
                  <li itemprop="title">Chief Architect</li>
            </ul>




Tuesday, April 20, 2010
The Big Practical Finish



Tuesday, April 20, 2010
What Can I Use Right
                                Now?
                     • Document semantics (with the HTML5 shiv
                           script for IE), but not if you use
                           javascript to add elements to the
                           DOM!

                     • Canvas with RaphaelJS
                     • Offline API in Firefox and Safari

Tuesday, April 20, 2010
What Doesn’t Work?

                     • Most of the new form elements,
                          unfortunately.
                     • Most of the new DOM API’s
                     • See http://a.deveria.com/caniuse/ for an up
                          to date list of what works and what
                          doesn’t!



Tuesday, April 20, 2010
The Future

                     • Client-side SQL Storage (works in Safari
                          and Firefox now, with slightly different
                          API’s)
                     • Microsoft says that IE9 will support HTML5
                          and hardware-accelerated SVG (Canvas)
                     • And we didn’t talk about CSS3 at all...

Tuesday, April 20, 2010
Resources

                     • http://adactio.com/extras/slides/
                          html5onlineconf/
                     • http://diveintohtml5.org
                     • http://validator.nu
                     • http://html5doctor.com

Tuesday, April 20, 2010
Questions?



Tuesday, April 20, 2010

Weitere ähnliche Inhalte

Was ist angesagt?

Wikis for Collaborative Learning
Wikis for Collaborative LearningWikis for Collaborative Learning
Wikis for Collaborative LearningP Parson
 
HTML5 - getting started
HTML5 - getting startedHTML5 - getting started
HTML5 - getting startedTed Drake
 
Can Media Queries Save Us All?
Can Media Queries Save Us All?Can Media Queries Save Us All?
Can Media Queries Save Us All?Tim Kadlec
 
Social Media and You! Introduction to Social Media
Social Media and You! Introduction to Social MediaSocial Media and You! Introduction to Social Media
Social Media and You! Introduction to Social MediaMala Chandra
 
Consumententrends 2010
Consumententrends 2010Consumententrends 2010
Consumententrends 2010Vincent Everts
 
Unconferences & New Web Initiatives
Unconferences & New Web InitiativesUnconferences & New Web Initiatives
Unconferences & New Web InitiativesEllyssa Kroski
 
Intro to Linked Data: Context
Intro to Linked Data: ContextIntro to Linked Data: Context
Intro to Linked Data: ContextDavid Wood
 

Was ist angesagt? (7)

Wikis for Collaborative Learning
Wikis for Collaborative LearningWikis for Collaborative Learning
Wikis for Collaborative Learning
 
HTML5 - getting started
HTML5 - getting startedHTML5 - getting started
HTML5 - getting started
 
Can Media Queries Save Us All?
Can Media Queries Save Us All?Can Media Queries Save Us All?
Can Media Queries Save Us All?
 
Social Media and You! Introduction to Social Media
Social Media and You! Introduction to Social MediaSocial Media and You! Introduction to Social Media
Social Media and You! Introduction to Social Media
 
Consumententrends 2010
Consumententrends 2010Consumententrends 2010
Consumententrends 2010
 
Unconferences & New Web Initiatives
Unconferences & New Web InitiativesUnconferences & New Web Initiatives
Unconferences & New Web Initiatives
 
Intro to Linked Data: Context
Intro to Linked Data: ContextIntro to Linked Data: Context
Intro to Linked Data: Context
 

Andere mochten auch

Hinduja Interactive Company Profile
Hinduja Interactive Company ProfileHinduja Interactive Company Profile
Hinduja Interactive Company Profilearyapatnaik
 
Your Database is Trying to Kill You
Your Database is Trying to Kill YouYour Database is Trying to Kill You
Your Database is Trying to Kill YouKevin Lawver
 
Welcome To Ruby On Rails
Welcome To Ruby On RailsWelcome To Ruby On Rails
Welcome To Ruby On RailsKevin Lawver
 
Crowdsourcing in the Public Sector
Crowdsourcing in the Public SectorCrowdsourcing in the Public Sector
Crowdsourcing in the Public SectorBas Kotterink
 
Making Marketing More Human Through Technology
Making Marketing More Human Through TechnologyMaking Marketing More Human Through Technology
Making Marketing More Human Through TechnologyKevin Lawver
 
Enabling Creativity: Software that encourages creation and exploration
Enabling Creativity: Software that encourages creation and explorationEnabling Creativity: Software that encourages creation and exploration
Enabling Creativity: Software that encourages creation and explorationKevin Lawver
 
Vocabulario o viño
Vocabulario o viñoVocabulario o viño
Vocabulario o viñoalxen
 
Súper Casares Paqui
Súper Casares PaquiSúper Casares Paqui
Súper Casares Paquialxen
 
Social Media Food Chain
Social Media Food ChainSocial Media Food Chain
Social Media Food ChainKevin Lawver
 
'UX', 'UX Design' and 'Good UX'
'UX', 'UX Design' and 'Good UX''UX', 'UX Design' and 'Good UX'
'UX', 'UX Design' and 'Good UX'Jinyong Kim
 

Andere mochten auch (16)

Hinduja Interactive Company Profile
Hinduja Interactive Company ProfileHinduja Interactive Company Profile
Hinduja Interactive Company Profile
 
Inspire U Billing for Massage Therapists with Vivian mahoney1
Inspire U Billing for Massage Therapists with Vivian mahoney1Inspire U Billing for Massage Therapists with Vivian mahoney1
Inspire U Billing for Massage Therapists with Vivian mahoney1
 
Inspire u featuring allissa haines~marketing with personality
Inspire u featuring allissa haines~marketing with personalityInspire u featuring allissa haines~marketing with personality
Inspire u featuring allissa haines~marketing with personality
 
Your Database is Trying to Kill You
Your Database is Trying to Kill YouYour Database is Trying to Kill You
Your Database is Trying to Kill You
 
Inspire U Presents Aromatherapy for Special Populations
Inspire U Presents Aromatherapy for Special PopulationsInspire U Presents Aromatherapy for Special Populations
Inspire U Presents Aromatherapy for Special Populations
 
CODE!
CODE!CODE!
CODE!
 
Welcome To Ruby On Rails
Welcome To Ruby On RailsWelcome To Ruby On Rails
Welcome To Ruby On Rails
 
Crowdsourcing in the Public Sector
Crowdsourcing in the Public SectorCrowdsourcing in the Public Sector
Crowdsourcing in the Public Sector
 
Making Marketing More Human Through Technology
Making Marketing More Human Through TechnologyMaking Marketing More Human Through Technology
Making Marketing More Human Through Technology
 
Building Whuffie
Building WhuffieBuilding Whuffie
Building Whuffie
 
Ma 51st annual meeting
Ma 51st annual meetingMa 51st annual meeting
Ma 51st annual meeting
 
Enabling Creativity: Software that encourages creation and exploration
Enabling Creativity: Software that encourages creation and explorationEnabling Creativity: Software that encourages creation and exploration
Enabling Creativity: Software that encourages creation and exploration
 
Vocabulario o viño
Vocabulario o viñoVocabulario o viño
Vocabulario o viño
 
Súper Casares Paqui
Súper Casares PaquiSúper Casares Paqui
Súper Casares Paqui
 
Social Media Food Chain
Social Media Food ChainSocial Media Food Chain
Social Media Food Chain
 
'UX', 'UX Design' and 'Good UX'
'UX', 'UX Design' and 'Good UX''UX', 'UX Design' and 'Good UX'
'UX', 'UX Design' and 'Good UX'
 

Ähnlich wie HTML5: About Damn Time

A Primer on HTML 5 - By Nick Armstrong
A Primer on HTML 5 - By Nick ArmstrongA Primer on HTML 5 - By Nick Armstrong
A Primer on HTML 5 - By Nick ArmstrongNick Armstrong
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standardsJustin Avery
 
The Tech Side of Project Argo
The Tech Side of Project ArgoThe Tech Side of Project Argo
The Tech Side of Project ArgoWesley Lindamood
 
Html5 coredevsummit
Html5 coredevsummitHtml5 coredevsummit
Html5 coredevsummitJen Simmons
 
Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Joseph Lewis
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)François Massart
 
HTML 5 Fundamental
HTML 5 FundamentalHTML 5 Fundamental
HTML 5 FundamentalLanh Le
 
Webmontag München Cross Platform
Webmontag München Cross PlatformWebmontag München Cross Platform
Webmontag München Cross Platformwolframkriesing
 
ECM Meets the Semantic Web - Nuxeo World 2011
ECM Meets the Semantic Web - Nuxeo World 2011ECM Meets the Semantic Web - Nuxeo World 2011
ECM Meets the Semantic Web - Nuxeo World 2011Stefane Fermigier
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5Steven Chipman
 
Introduction web tech
Introduction web techIntroduction web tech
Introduction web techLiaquat Rahoo
 
Browsers & Web Technology - an Opera talk
Browsers & Web Technology - an Opera talkBrowsers & Web Technology - an Opera talk
Browsers & Web Technology - an Opera talkZi Bin Cheah
 
A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3Darren Wood
 
let's talk web standards
let's talk web standardslet's talk web standards
let's talk web standardsZi Bin Cheah
 
A Match Made In The Cloud
A Match Made In The CloudA Match Made In The Cloud
A Match Made In The CloudChapter Three
 

Ähnlich wie HTML5: About Damn Time (20)

A Primer on HTML 5 - By Nick Armstrong
A Primer on HTML 5 - By Nick ArmstrongA Primer on HTML 5 - By Nick Armstrong
A Primer on HTML 5 - By Nick Armstrong
 
Darwin web standards
Darwin web standardsDarwin web standards
Darwin web standards
 
The Tech Side of Project Argo
The Tech Side of Project ArgoThe Tech Side of Project Argo
The Tech Side of Project Argo
 
Html5 coredevsummit
Html5 coredevsummitHtml5 coredevsummit
Html5 coredevsummit
 
Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)Introduction to HTML5 and CSS3 (revised)
Introduction to HTML5 and CSS3 (revised)
 
HTML5, just another presentation :)
HTML5, just another presentation :)HTML5, just another presentation :)
HTML5, just another presentation :)
 
HTML 5 Fundamental
HTML 5 FundamentalHTML 5 Fundamental
HTML 5 Fundamental
 
Webmontag München Cross Platform
Webmontag München Cross PlatformWebmontag München Cross Platform
Webmontag München Cross Platform
 
The Future of DITA
The Future of DITAThe Future of DITA
The Future of DITA
 
HTML5 Report Card
HTML5 Report CardHTML5 Report Card
HTML5 Report Card
 
Html5
Html5Html5
Html5
 
HTML 5
HTML 5HTML 5
HTML 5
 
ECM Meets the Semantic Web - Nuxeo World 2011
ECM Meets the Semantic Web - Nuxeo World 2011ECM Meets the Semantic Web - Nuxeo World 2011
ECM Meets the Semantic Web - Nuxeo World 2011
 
An Introduction to HTML5
An Introduction to HTML5An Introduction to HTML5
An Introduction to HTML5
 
Introduction web tech
Introduction web techIntroduction web tech
Introduction web tech
 
Browsers & Web Technology - an Opera talk
Browsers & Web Technology - an Opera talkBrowsers & Web Technology - an Opera talk
Browsers & Web Technology - an Opera talk
 
A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3
 
let's talk web standards
let's talk web standardslet's talk web standards
let's talk web standards
 
A Match Made In The Cloud
A Match Made In The CloudA Match Made In The Cloud
A Match Made In The Cloud
 
Html5 public
Html5 publicHtml5 public
Html5 public
 

Kürzlich hochgeladen

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
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
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
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
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
"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
 
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
 
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
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 

Kürzlich hochgeladen (20)

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
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!
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
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
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 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
 
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)
 
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
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 

HTML5: About Damn Time

  • 1. HTML5: About Damn Time Kevin Lawver | kevin@lawver.net | @kplawver Tuesday, April 20, 2010
  • 2. A Short History Lesson • HTML 2.0 - 11/1995 • HTML 3.2 - 01/1997 • HTML 4.01 - 12/1999 • XHTML 1.0 - 01/2000 • XHTML 1.1 - 05/2001 (no one uses this) • XHTML 2? - Dead as of 12/2009 Tuesday, April 20, 2010
  • 3. HTML5: Guerilla • The What Working Group (http:// whatwg.org) was started by Ian Hickson (then at Opera, now at Google). • Started as a response to what was wrong with XHTML 2 and to move HTML forward. • HTML5 specs brought into W3C in 03/2007. Tuesday, April 20, 2010
  • 4. So, What’s New? • Document sematics • Form controls • Canvas • Audio and Video as first-class citizens • Offline storage • Embedded meta data inside elements Tuesday, April 20, 2010
  • 5. And What’s Gone? • Presentational elements like font, big, center, etc • Presentational attributes like bgcolor, border, etc • Frames, frameset and noframes • acronym (abbr serves both purposes now) Tuesday, April 20, 2010
  • 6. A Basic Document http://dev.lawver.net/html5/blank.html Tuesday, April 20, 2010
  • 7. <!DOCTYPE html> <html> <head> <title>My Awesome HTML5 Document</title> <meta charset="utf-8"/> <!--[if IE]> <script src="http://html5shiv.googlecode.com/svn/trunk/ html5.js"></script> <![endif]--> </head> <body> </body> </html> Tuesday, April 20, 2010
  • 8. Things to See • The HTML comment at the top must be there or things will look silly in any current version of Internet Explorer • The DOCTYPE is tiny. Since it’s no longer an “X”, there’s no DTD. • Other than that, not much is different here, right? Tuesday, April 20, 2010
  • 9. Document Semantics • No more divs! (OK, OK, fewer divs) • Real semantics: header, footer, section, article & aside Tuesday, April 20, 2010
  • 10. Let’s Make a Blog • I used Tumblr, because their templating language won’t get in the way. • It’s live now: http://tedxcreativecoast.com (convenient victim) Tuesday, April 20, 2010
  • 11. Let’s look at the masthead... Tuesday, April 20, 2010
  • 12. <header> <h1><a href="/">TEDx Creative Coast</a></h1> </header> <nav class="pages"> <ul> <li><a href="/">Home</a></li> <li><a href="/event-details">Event Details</a></li> <li><a href="/speakers">Speakers</a></li> <li><a href="/sponsors">Sponsors</a></li> <li><a href="/about">About TEDx</a></li> <li><a href="/about_tedxcreativecoast">Volunteers and Crew</ a></li> </ul> </nav> Tuesday, April 20, 2010
  • 13. Did you notice... • The header element? • That I still used an h1? • That nav is a new element specifically for navigation? Tuesday, April 20, 2010
  • 14. A Blog Post... http://dev.lawver.net/html5/tedx.html Tuesday, April 20, 2010
  • 15. <article class="hentry text"> <h3><a href="http://tedxcreativecoast.com/post/ 482465925/musicians-welcome">Musicians Welcome</ a></h3> <div class="entry-content"> ... </div> <details> <a href="http://tedxcreativecoast.com/post/ 482465925/musicians-welcome">Permalink</a> | posted 1 day ago </details> </article> Tuesday, April 20, 2010
  • 16. What did you see? Tuesday, April 20, 2010
  • 17. Here’s what I saw... • The article element surrounding the post. • The new details element for displaying meta data about the post. • I didn’t use another header element around the h3, but I could have. • Did anyone notice the microformat I snuck in there? Tuesday, April 20, 2010
  • 18. And the footer... Tuesday, April 20, 2010
  • 19. <footer> <nav class="pagination"> <ul> <li><details>You are on page 1 of 1.</details></li> <ul> </nav> <nav> <ul> <li><a href="#">Top</a></li> <li><a href="/">Home</a></li> <li><a href="/about" title="TEDxCreativeCoast About TED and TEDx">About</a></li> <li><a href="/mobile">Mobile</a></li> <li><a href="/event-details" title="TEDxCreativeCoast Event Details">Event</a></li> <li><a href="/speakers" title="TEDxCreativeCoast Presenters">Speakers</a></li> <li><a href="/sponsors" title="TEDxCreativeCoast Sponsors">Sponsors</a></li> <ul> <p>This independent TEDx event is operated under license from <a href="http://ted.com" target="_blank" title="This independent TEDx event is operated under license from TED">TED</a>.</p> </nav> <details class="theme"></details> </footer> Tuesday, April 20, 2010
  • 20. And? • The shapely footer element, containing... • multiple nav elements • and a document-wide details element for document cruft. Tuesday, April 20, 2010
  • 21. Canvas http://dev.lawver.net/html5/canvas.html Tuesday, April 20, 2010
  • 22. Drawing the Web Way • Creates a drawing “area” inside of a document. • Has a javascript API for adding shapes, and allowing for interactivity • Feature-rich and complex drawing API. Tuesday, April 20, 2010
  • 23. Abstract it all away! • I use RaphaelJS, which uses Canvas on good browsers and VML in Internet Explorer. • It abstracts away a lot of the complexity and provides a simple but powerful API. • http://raphaeljs.com Tuesday, April 20, 2010
  • 26. More Data-Specific Inputs! • We can finally do sliders in the markup • Colors, URLs, e-mail addresses, names, search queries, telephone numbers, and times and dates all have their own input types now! Tuesday, April 20, 2010
  • 27. Demo http://dev.lawver.net/html5/forms.html Tuesday, April 20, 2010
  • 29. Make Your App Offlineable! • You can create a manifest which gives a list of URLs for your app that declares files to cache, which ones are only available on the network, and fallbacks for failed requests. • Poor cross-browser implementation so far. • A lot like the old Google Gears API. Tuesday, April 20, 2010
  • 30. No Demo Because it doesn’t work well enough across multiple browsers to waste time with... yet. Tuesday, April 20, 2010
  • 31. Audio & Video Tuesday, April 20, 2010
  • 32. No more plugins! Tuesday, April 20, 2010
  • 33. Media is a first-class markup citizen now! Tuesday, April 20, 2010
  • 34. Demo http://dev.lawver.net/html5/video.html Tuesday, April 20, 2010
  • 35. The Markup <video src="movie.m4v" id="my-video"></video> <p> <a href="javascript:play_it()">play</a> | <a href="javascript:pause_it()">pause</a> </p> Tuesday, April 20, 2010
  • 36. The Javascript function play_it() { var video = document.getElementById("my-video"); video.play(); } function pause_it() { var video = document.getElementById("my-video"); video.pause(); } Tuesday, April 20, 2010
  • 37. Problems with video... • There’s a big argument about supported formats. Safari supports h.264, and Firefox only supports Ogg Theora. • There are rumors that Google will open sources their video codec, making this stuff moot. • IE doesn’t support the video element at all. • Works great on the iPad and iPhone though! Tuesday, April 20, 2010
  • 39. Microdata is a way to embed meta data inside of elements. Tuesday, April 20, 2010
  • 41. Turn your HTML documents into your API! Tuesday, April 20, 2010
  • 42. Yeah, but we have microformats! Tuesday, April 20, 2010
  • 43. But, they’re non-trivial to parse and mis-use some HTML attributes. Tuesday, April 20, 2010
  • 44. Ok, fine. http://dev.lawver.net/html5/microdata.html Tuesday, April 20, 2010
  • 45. An Address Card <ul itemscope itemtype="http://microformats.org/wiki/hcard" class="vcard" itemid="http://lawver.net"> <li itemprop="fn">Kevin Lawver</li> <li><a href="http://lawver.net" itemprop="url" rel="bookmark" class="url">Blog</a></li> <li itemprop="org">Music Intelligence Solutions</li> <li itemprop="title">Chief Architect</li> </ul> Tuesday, April 20, 2010
  • 46. The Big Practical Finish Tuesday, April 20, 2010
  • 47. What Can I Use Right Now? • Document semantics (with the HTML5 shiv script for IE), but not if you use javascript to add elements to the DOM! • Canvas with RaphaelJS • Offline API in Firefox and Safari Tuesday, April 20, 2010
  • 48. What Doesn’t Work? • Most of the new form elements, unfortunately. • Most of the new DOM API’s • See http://a.deveria.com/caniuse/ for an up to date list of what works and what doesn’t! Tuesday, April 20, 2010
  • 49. The Future • Client-side SQL Storage (works in Safari and Firefox now, with slightly different API’s) • Microsoft says that IE9 will support HTML5 and hardware-accelerated SVG (Canvas) • And we didn’t talk about CSS3 at all... Tuesday, April 20, 2010
  • 50. Resources • http://adactio.com/extras/slides/ html5onlineconf/ • http://diveintohtml5.org • http://validator.nu • http://html5doctor.com Tuesday, April 20, 2010