SlideShare a Scribd company logo
HTML5
Jason Eiseman
Librarian for Emerging Technologies
Yale Law School
1990
<title>Hypertext Links</title>
<h1>Links and Anchors</h1>
A link is the connection between one piece of
<a href=WhatIs.html>hypertext</a> and another.



  1990
“Support Existing Content”



HTML5 Design Principles:http://www.w3.org/TR/html-design-principles
World Wide Web Consortium
W3C

    HTML 4.01 - 1999
    XHTML 1.0 - 2002
    XHTML 1.1 - 2010

http://www.w3.org/
Web Hypertext Application
Technology Working Group
WHATWG


    Web Forms 2.0 - 2004


http://www.whatwg.org
WHATWG & W3C

    HTML5 - 2008 - working draft
                    2012? - candidate
                    2022? - standard

http://www.w3.org
So why worry about HTML5
             now?


2022?
Internet
 Firefox      Chrome   Explorer 9   Safari   Opera




           all support HTML5 today

Today?
Today?
Today?
semantics &
page structure
<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML:    XHTML 1.0 Strict//EN" "http://www.w3.org/
          TR/xhtml1/DTD/xhtml1-strict.dtd">


HTML5:    <!DOCTYPE html>



DOCTYPE
XHTML:    <script type="text/javascript" src="javascript.js"></script>




HTML5:    <script src="javascript.js"></script>



Scripts
XHTML:        <link type="text/css" rel="stylesheet" media="all"
              href="style.css" />




HTML5:        <link rel="stylesheet" href="style.css" />



Stylesheets
<div id= "header">
                   <div id= "nav">



       <div id= "section">    <div id= "sidebar">




                   <div id= "footer">

Semantics & Page Structure
<header>
                             <nav>

       <article>
         <section>                   <aside>




                        <footer>

Semantics & Page Structure
Microformats


Semantics & Page Structure
forms
Validation


Forms
Required Fields


Forms
Placeholder


Forms
Forms
Datalist


Forms
Forms
Date Pickers


Forms
Forms
<input name="email" type="email" />
<input name="url" type="url" />




Forms
@




Forms
/ .com




Forms
http://jasoneiseman.com/aall11/forms.html




Forms
rich internet applications
canvas
a drawing surface



Canvas
<canvas id="theCanvas" width="800" height="800">


</canvas>




Canvas
<script type="application/javascript">
function draw() {
var canvas=document.getElementById('theCanvas');
var context=canvas.getContext('2d');
context.strokeRect(10, 10, 600, 200);
context.font="bold 40px sans-serif";




Canvas
<body onload="draw()">
 <canvas id="theCanvas" width="800" height="800">
 <img src="carrells.gif" />
 </canvas>
</body>


Canvas
Canvas
http://jasoneiseman.com/aall11/canvas.html




Canvas
Canvas - paper.js - available at: http://paperjs.org
video
browser-native video



Video
<video src="movie.mp4" controls width="360"
height="240" poster= "placeholder.jpg ">

</video>




Video
X      Ogg   WebM/VP8
    Firefox



                       X      Ogg   WebM/VP8
    Chrome


                      H.264    X       X
Internet Explorer 9


                      H.264    X       X
     Safari


Video
http://jasoneiseman.com/aall11/video.html




Video
Video
Video
<video controls preload width="270" height="186" poster ="poster.png">
  <source src="http://jasoneiseman.com/aall11/chain.mp4" type="video/
mp4">
  <source src="http://jasoneiseman.com/aall11/chain.ogv" type="video/
ogg">
<object width="270" height="186">
  <param name="movie" value="http://jasoneiseman.com/aall11/
chain.swf">
  <embed src="http://jasoneiseman.com/aall11/chain.swf" width="270"
height="186">
</object>
</video>



Video
<video width="270" height="186" controls preload poster ="poster.png">




Video
<source src="http://jasoneiseman.com/aall11/chain.mp4" type="video/
mp4">
<source src="http://jasoneiseman.com/aall11/chain.ogv" type="video/
ogg">




Video
<object width="270" height="186">
  <param name="movie" value="http://jasoneiseman.com/aall11/
chain.swf">
  <embed src="http://jasoneiseman.com/aall11/chain.swf" width="270"
height="186">
</object>




Video
Video
Video
<head>
 <script type="text/javascript" src="http://html5.kaltura.org/js" >
</script>
</head>
<body>
 <video kentryid="0_swup5zao" kwidgetid="_243342"></video>
</body>




Video
Video
Dive Into HTML5
   http://diveintohtml5.org/video.html




Video
audio
browser-native audio



Audio
<audio src="audio.mp3" controls>

</audio>




Audio
<audio controls>
<source src="audio.mp3" type= "audio/mpeg">
<source src="audio.ogg" type= "audio/ogg">
</audio>



Audio
http://jasoneiseman.com/aall11/audio.html




 Audio
advanced functionality
geolocation



Advanced Functionality
local storage



Advanced Functionality
offline web applications



Advanced Functionality
browser history



Advanced Functionality
further reading
http://www.abookapart.com/products/html5-for-web-designers
http://diveintohtml5.org/
http://www.html5rocks.com/en/
http://jasoneiseman.com/aall11.zip
          jasoneiseman@gmail.com



Further Reading

More Related Content

DOC
C:\fakepath\url
PDF
More Than You Ever Wanted to Know About Resource Hints - Harry Roberts (CSS W...
PPTX
Html5 & less css
PDF
HTML5 workshop, part 1
DOCX
DOC
DOCX
Banners
DOC
Jager
C:\fakepath\url
More Than You Ever Wanted to Know About Resource Hints - Harry Roberts (CSS W...
Html5 & less css
HTML5 workshop, part 1
Banners
Jager

What's hot (20)

KEY
Deliverance talk at plone meetup
DOC
Jager planetaire nevels
KEY
Html5的应用与推行
PPTX
HTML5 and CSS3 Techniques You Can Use Today
PDF
Prioritize your critical css and images to render your site fast velocity ny...
DOC
Slidecarol.html
PDF
The web context
KEY
It's a Mod World - A Practical Guide to Rocking Modernizr
PPTX
Html5 - Novas Tags na Prática!
PPTX
Html5 + css3+ java script for future - HTML5
KEY
HTML5 Video Player - HTML5 Dev Conf 2012
PPT
Please dont touch-3.6-jsday
PDF
Taiwan Web Standards Talk 2011
KEY
关于 Html5 那点事
KEY
Taking your Web App for a walk
PPTX
Hybrid app
PPTX
Webmatrixppt
PDF
Scott Jehl - Delivering Responsibly - beyond tellerrand Düsseldorf 2015
PDF
Newbies guide to customizing word press themes 25
PPTX
Creating Secure Web Apps: What Every Developer Needs to Know About HTTPS Today
Deliverance talk at plone meetup
Jager planetaire nevels
Html5的应用与推行
HTML5 and CSS3 Techniques You Can Use Today
Prioritize your critical css and images to render your site fast velocity ny...
Slidecarol.html
The web context
It's a Mod World - A Practical Guide to Rocking Modernizr
Html5 - Novas Tags na Prática!
Html5 + css3+ java script for future - HTML5
HTML5 Video Player - HTML5 Dev Conf 2012
Please dont touch-3.6-jsday
Taiwan Web Standards Talk 2011
关于 Html5 那点事
Taking your Web App for a walk
Hybrid app
Webmatrixppt
Scott Jehl - Delivering Responsibly - beyond tellerrand Düsseldorf 2015
Newbies guide to customizing word press themes 25
Creating Secure Web Apps: What Every Developer Needs to Know About HTTPS Today
Ad

Viewers also liked (8)

PDF
Emerging Technologies in Legal Researches Part 2
PDF
santa 2011
PDF
Social Media Metrics: a ROI-al Pain
PDF
2010 q3 earnings_google
PDF
Emerging technologies in libraries
PDF
Ebooks llnef12
PPT
Digital Media in 2012
PDF
Emerging Technologies in Legal Research Part 1
Emerging Technologies in Legal Researches Part 2
santa 2011
Social Media Metrics: a ROI-al Pain
2010 q3 earnings_google
Emerging technologies in libraries
Ebooks llnef12
Digital Media in 2012
Emerging Technologies in Legal Research Part 1
Ad

Similar to Html5 - short intro (20)

PDF
What you need to know bout html5
PDF
Speak The Web: The HTML5 Experiments
PDF
Brave new world of HTML5 - WebTech 2010 Milano 09.11.2010
PDF
HTML5 and friends - JISC CETIS Conference 2010 Nottingham 15.11.2010
PDF
HTML5 and friends - standards>next Manchester 24.11.2010
PPTX
PDF
Web Directions @media 2010
KEY
2022 HTML5: The future is now
KEY
HTML5: Markup Evolved
PDF
HTML5, just another presentation :)
PPTX
HTML5 - What h#@$ is it?
PDF
Word camp nextweb
KEY
An Introduction to HTML5
PPT
HTML5 Webinar - Mind Storm Software
PDF
HTML5 Refresher
KEY
HTML5: It goes to ELEVEN
PPT
HTML5 Presentation
PDF
Html5 intro
PDF
HTML5 Intoduction for Web Developers
What you need to know bout html5
Speak The Web: The HTML5 Experiments
Brave new world of HTML5 - WebTech 2010 Milano 09.11.2010
HTML5 and friends - JISC CETIS Conference 2010 Nottingham 15.11.2010
HTML5 and friends - standards>next Manchester 24.11.2010
Web Directions @media 2010
2022 HTML5: The future is now
HTML5: Markup Evolved
HTML5, just another presentation :)
HTML5 - What h#@$ is it?
Word camp nextweb
An Introduction to HTML5
HTML5 Webinar - Mind Storm Software
HTML5 Refresher
HTML5: It goes to ELEVEN
HTML5 Presentation
Html5 intro
HTML5 Intoduction for Web Developers

Recently uploaded (20)

PPTX
MYSQL Presentation for SQL database connectivity
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
Programs and apps: productivity, graphics, security and other tools
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Big Data Technologies - Introduction.pptx
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
cuic standard and advanced reporting.pdf
PPTX
Spectroscopy.pptx food analysis technology
PPTX
sap open course for s4hana steps from ECC to s4
MYSQL Presentation for SQL database connectivity
The Rise and Fall of 3GPP – Time for a Sabbatical?
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Spectral efficient network and resource selection model in 5G networks
Diabetes mellitus diagnosis method based random forest with bat algorithm
Building Integrated photovoltaic BIPV_UPV.pdf
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
Network Security Unit 5.pdf for BCA BBA.
Advanced methodologies resolving dimensionality complications for autism neur...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Programs and apps: productivity, graphics, security and other tools
MIND Revenue Release Quarter 2 2025 Press Release
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Big Data Technologies - Introduction.pptx
NewMind AI Weekly Chronicles - August'25 Week I
Reach Out and Touch Someone: Haptics and Empathic Computing
cuic standard and advanced reporting.pdf
Spectroscopy.pptx food analysis technology
sap open course for s4hana steps from ECC to s4

Html5 - short intro