SlideShare uma empresa Scribd logo
1 de 67
The Devil and HTML5
Myles Braithwaite
http://myles.tk | me@myles.tk | @mylesb
What is HTML?

•   HTML is a Markup Language.

•   HTML is mainly used to write web
    pages.

•   HTML is not a programming language.



                    2
Why should you
    care?


      3
“Because browsers are now application platforms, ‘the big runtime
 machine’ if you will. I for one have given up several desktop apps
  for their online version, simply because they're much better in
                              most cases.”

         Fabio FZero on the GTALUG Mailing List




                                 4
So Cow{boy,girl} Up.



         5
What is new in
  HTML5?


      6
The DOCTYPE



     7
•   The HTML layout engines use the
    DOCTYPE to figure out which layout
    mode to use.




                   8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
       "http://www.w3.org/TR/html4/strict.dtd">

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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">




                                 9
But in HTML5


•   The DOCTYPE is only required for
    legacy reasons.




                   10
<!DOCTYPE html>




                  11
Semantic Elements



        12
<div id="container">
    <div id="header">
        <ul id="navigation"></ul>
    </div>
    <div id="body">
        <div id="page"></div>
        <div id="sidebar"></div>
    </div>
    <div id="footer"></div>
</div>




                             13
<div id="container">
    <header></header>
    <nav></nav>
    <article>
        <section></section>
    </article>
    <aside></aside>
    <footer></footer>
</div>




                              14
header, nav, article, section, aside footer { display: block; }




                             15
How do you represent
         the date?


•   Tuesday, 13th July, 2010

•   July 13th, 2010

•   2010, July 13th




                      16
How do you represent
           time?


•   9:58 AM

•   09:58




              17
<time datetime="2010-07-13">13th July, 2010</time>
<time datetime="2010-07-13">Today</time>
<time datetime="2010-07-13T19:30:00-05:00">7:30 pm</time>




                             18
<article>
       <time datetime="2010-07-13T19:30:00-05:00" pubdate>
        7:30 pm
    </time>
</article>




                                19
<link   rel="archives" href="/archives.html">
<link   rel="author" href="/author/myles.html">
<link   rel="start" href="/first-post">
<link   rel="prev" href="/prev-post">
<link   rel="next" href="/next-post">
<link   rel="end" href="/last-post">
<link   rel="up" href="/">




                               20
<p>
       <a href="/page/2/"   class="previous" rel="prev">Previous</a>
       <a href="/page/1/"   rel="start">1</a>
       <a href="/page/2/"   rel="prev">2</a>
       <span>3</span>
       <a href="/page/3/"   rel="next">3</a>
       <a href="/page/4/"   rel="end">4</a>
       <a href="/page/3/"   class="next" rel="next">Next</a>
</p>




                                  21
<article>
       <h2>GTALUG Talk about HTML5 Tomorrow at 7:30pm</h2>
       <section>
            <p>I am going to be talking about HTML5 at the next
                GTALUG meeting.</p>
       </section>
       <p class="meta">
            By <a href="http://myles.tk/" rel="author">Myles</a>;
            published <time datetime="2010-07-12" pubdate>
             yesterday</time>;
        tagged with <span rel="tag">GTALUG</span> &amp;
         <span rel="tag">HTML5</span>.
    </p>
</article>




                                 22
Forms



  23
Placeholder Text

•   A short hint to (word or parse) to aid
    the user in their data entry.

•   Shouldn’t be used as an alternative to
    <label>.




                     24
<form action="." method="post" accept-charset="utf-8">
    <p><label>Email <input type="text" name="email"
        id="id_email" placeholder="you@example.com">
    </label></p>
    <p><input type="submit"></p>
</form>




                             25
26
37signals Launchpad
         27
Compatibility


IE   Firefox   Chrome   iPhone   Android


☐      ☑         ☑        ☑         ?




                 28
New Input Types



       29
checkbox        <input type="checkbox">


 radio button     <input type="radio">


password field     <input type="password">


drop-down list    <select><option>


  file picker      <input type="file">


submit button     <input type="submit">


  plain text      <input type="text">



                 30
What has been added?
      Email        <input type="email">

   Web Address     <input type="url">

     Number        <input type="number">

      Range        <input type="range">

   Date Pickers    <input type="date">

     Search        <input type="search">

     Colour        <input type="color">


                  31
•   Web browser will provided the
    validation.




                    32
•   If you try to submit an email field with
    “youexample.com” instead of
    “you@exmaple.com” the browser will
    stop you.




                     33
Virtual Keyboards




        34
Geolocation



     35
•   The ability to find where the user is
    located.

•   Uses an attached GPS device.

•   Or the users external IP address.




                     36
navigator.geolocation.getCurrentPosition(function(position){
    var lat = position.coords.latitude;
    var log = position.coords.longitude;
    alert("You are at coronets " + lat + ', ' + log);
});




                             37
Local Storage



      38
Cookies on Steroids



         39
With non of the
bandwidth drawbacks


         40
•   Allows the web application to use a
    key/value database on the client
    computer.

•   This data is never transmitted to the
    web server (unlike cookies).




                     41
•   Internet Explore=>8.0

•   Mozilla Firefox=>3.5

•   Chrome=>4.0

•   Opera=>10.5

•   iOS=>2.0

•   Android=>2.0

                    42
var first_name = localStorage.getItem("first_name");

localStorage.setItem("first_name", first_name);




                             43
Web SQL Database


•   Allows you to use a SQLite database
    for local storage.




                    44
Offline
Web Applications


       45
•   Allows you to create a manifest file that
    list all your static content.

•   So it can be cached/downloaded to the
    clients computer.




                     46
CACHE MANIFEST
/media/admin/css/base.css
/media/admin/css/changelists.css
/media/admin/css/dashboard.css
/media/admin/css/forms.css
/media/admin/css/global.css
/media/admin/css/layout.css
/media/admin/css/login.css
/media/admin/css/null.css
/media/admin/css/patch-iewin.css

                 47
More information
•   WHATWG Spec <http://j.mp/dqpmc3>

•   Mozilla’s Docs <http://j.mp/9lrDZ8>

•   Apple’s Docs <http://j.mp/9D2P2C>

•   Google’s Using AppCache to Launch
    Offline <http://j.mp/97vz71>, <http://
    j.mp/d4VWDN>, and <http://j.mp/
    aOnzW7>

                    48
<video> Tag



     49
•   Allows you to server the best video
    format (MP4, Ogg Vorbis, WebM,
    H.264) for the user.




                    50
Will this kill Flash?



          51
For Video?
   Yes.


    52
For anything else?
       No.


        53
<video id="movie" width="320" height="240" preload controls>
    <source src="movie.mp4" type='video/mp4;
codecs="avc1.42E01E, mp4a.40.2"'>
    <source src="movie.webm" type='video/webm; codecs="vp8,
vorbis"'>
    <source src="movie.ogv" type='video/ogg; codecs="theora,
vorbis"'>
    <object width="320" height="240" type="application/x-
shockwave-flash" data="flowplayer-3.2.1.swf">
         <param name="movie" value="flowplayer-3.2.1.swf">
         <param name="allowfullscreen" value="true">
         <param name="flashvars" value='config={"clip": {"url":
"http://example.org/movie.mp4", "autoPlay":false,
"autoBuffering":true}}'>
  </object>
</video>


                              54
I don’t know anything
    about Canvas.



          55
Sorry



  56
Who’s Pushing
  HTML5


      57
Apple



  58
j.mp/aUVu1w
     59
apple.com/html5
       60
Google



  61
•   HTML5Rocks <html5rocks.com>

•   YouTube HTML5 <youtube.com/html5>

•   Gmail supports HTML5 Drag and Drop
    <myl.be/6g7l>




                  62
google.com/pacman
        63
youtube.com/chromefastball
            64
65
66
67

Mais conteúdo relacionado

Mais procurados

HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine)
HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine) HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine)
HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine) Gabriele Gigliotti
 
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5Kevin DeRudder
 
Opening up the Social Web - Standards that are bridging the Islands
Opening up the Social Web - Standards that are bridging the Islands Opening up the Social Web - Standards that are bridging the Islands
Opening up the Social Web - Standards that are bridging the Islands Bastian Hofmann
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5Adrian Olaru
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019Makoto Mori
 
Browsers with Wings
Browsers with WingsBrowsers with Wings
Browsers with WingsRemy Sharp
 
High Performance Ajax Applications
High Performance Ajax ApplicationsHigh Performance Ajax Applications
High Performance Ajax ApplicationsJulien Lecomte
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessionsUdaAs PaNchi
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?Remy Sharp
 
Web UI performance tuning
Web UI performance tuningWeb UI performance tuning
Web UI performance tuningAndy Pemberton
 
JS Lab`16. Владимир Воевидка: "Как работает браузер"
JS Lab`16. Владимир Воевидка: "Как работает браузер"JS Lab`16. Владимир Воевидка: "Как работает браузер"
JS Lab`16. Владимир Воевидка: "Как работает браузер"GeeksLab Odessa
 
Odoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo
 
HTML5 APIs - Where No Man Has Gone Before! - GothamJS
HTML5 APIs - Where No Man Has Gone Before! - GothamJSHTML5 APIs - Where No Man Has Gone Before! - GothamJS
HTML5 APIs - Where No Man Has Gone Before! - GothamJSRobert Nyman
 
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, CroatiaLeave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, CroatiaRobert Nyman
 

Mais procurados (20)

HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine)
HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine) HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine)
HTML5 e CSS3 (slides della sessione tenuta al DIMI di Udine)
 
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5
 
Opening up the Social Web - Standards that are bridging the Islands
Opening up the Social Web - Standards that are bridging the Islands Opening up the Social Web - Standards that are bridging the Islands
Opening up the Social Web - Standards that are bridging the Islands
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 
20190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React201920190118_NetadashiMeetup#8_React2019
20190118_NetadashiMeetup#8_React2019
 
Diy frozen snow globe
Diy frozen snow globeDiy frozen snow globe
Diy frozen snow globe
 
HTML 5 - Overview
HTML 5 - OverviewHTML 5 - Overview
HTML 5 - Overview
 
The Thinking behind BEM
The Thinking behind BEMThe Thinking behind BEM
The Thinking behind BEM
 
SocketStream
SocketStreamSocketStream
SocketStream
 
Browsers with Wings
Browsers with WingsBrowsers with Wings
Browsers with Wings
 
High Performance Ajax Applications
High Performance Ajax ApplicationsHigh Performance Ajax Applications
High Performance Ajax Applications
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessions
 
HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?HTML5: friend or foe (to Flash)?
HTML5: friend or foe (to Flash)?
 
Web UI performance tuning
Web UI performance tuningWeb UI performance tuning
Web UI performance tuning
 
What is HTML 5?
What is HTML 5?What is HTML 5?
What is HTML 5?
 
JS Lab`16. Владимир Воевидка: "Как работает браузер"
JS Lab`16. Владимир Воевидка: "Как работает браузер"JS Lab`16. Владимир Воевидка: "Как работает браузер"
JS Lab`16. Владимир Воевидка: "Как работает браузер"
 
Odoo - CMS performances optimization
Odoo - CMS performances optimizationOdoo - CMS performances optimization
Odoo - CMS performances optimization
 
WordPress and Ajax
WordPress and AjaxWordPress and Ajax
WordPress and Ajax
 
HTML5 APIs - Where No Man Has Gone Before! - GothamJS
HTML5 APIs - Where No Man Has Gone Before! - GothamJSHTML5 APIs - Where No Man Has Gone Before! - GothamJS
HTML5 APIs - Where No Man Has Gone Before! - GothamJS
 
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, CroatiaLeave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
 

Destaque

GTALUG Short Talk On Mercurial
GTALUG Short Talk On MercurialGTALUG Short Talk On Mercurial
GTALUG Short Talk On MercurialMyles Braithwaite
 
GTALUG Presentation on CouchDB
GTALUG Presentation on CouchDBGTALUG Presentation on CouchDB
GTALUG Presentation on CouchDBMyles Braithwaite
 
LessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG MeetingLessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG MeetingMyles Braithwaite
 
The Internet and Your Business
The Internet and Your BusinessThe Internet and Your Business
The Internet and Your BusinessMyles Braithwaite
 

Destaque (8)

extending-php
extending-phpextending-php
extending-php
 
Google App Engine
Google App EngineGoogle App Engine
Google App Engine
 
GTALUG Short Talk On Mercurial
GTALUG Short Talk On MercurialGTALUG Short Talk On Mercurial
GTALUG Short Talk On Mercurial
 
GTALUG Presentation on CouchDB
GTALUG Presentation on CouchDBGTALUG Presentation on CouchDB
GTALUG Presentation on CouchDB
 
Django GTALUG Presentation
Django GTALUG PresentationDjango GTALUG Presentation
Django GTALUG Presentation
 
LessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG MeetingLessCSS Presentation @ April 2015 GTALUG Meeting
LessCSS Presentation @ April 2015 GTALUG Meeting
 
The Internet and Your Business
The Internet and Your BusinessThe Internet and Your Business
The Internet and Your Business
 
Take a Stroll in the Bazaar
Take a Stroll in the BazaarTake a Stroll in the Bazaar
Take a Stroll in the Bazaar
 

Semelhante a The Devil and HTML5

Semelhante a The Devil and HTML5 (20)

[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design[O'Reilly] HTML5 Design
[O'Reilly] HTML5 Design
 
Html5 drupal7 with mandakini kumari(1)
Html5 drupal7 with mandakini kumari(1)Html5 drupal7 with mandakini kumari(1)
Html5 drupal7 with mandakini kumari(1)
 
Upload[1]
Upload[1]Upload[1]
Upload[1]
 
HTML5
HTML5HTML5
HTML5
 
[edUi] HTML5 Workshop
[edUi] HTML5 Workshop[edUi] HTML5 Workshop
[edUi] HTML5 Workshop
 
Html5 101
Html5 101Html5 101
Html5 101
 
[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design[convergese] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
20111014 mu me_html5
20111014 mu me_html520111014 mu me_html5
20111014 mu me_html5
 
Html5 101
Html5 101Html5 101
Html5 101
 
[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover[heweb11] HTML5 Makeover
[heweb11] HTML5 Makeover
 
Html5 and css3
Html5 and css3Html5 and css3
Html5 and css3
 
Introduccion a HTML5
Introduccion a HTML5Introduccion a HTML5
Introduccion a HTML5
 
html5
html5html5
html5
 
[PSU Web 2011] HTML5 Design
[PSU Web 2011] HTML5 Design[PSU Web 2011] HTML5 Design
[PSU Web 2011] HTML5 Design
 
HTML5, the new buzzword
HTML5, the new buzzwordHTML5, the new buzzword
HTML5, the new buzzword
 
HTML5 Design
HTML5 DesignHTML5 Design
HTML5 Design
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
 
HTML5 New and Improved
HTML5   New and ImprovedHTML5   New and Improved
HTML5 New and Improved
 

Último

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
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...Neo4j
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
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
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
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 2024Rafal Los
 
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...Drew Madelung
 
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
 
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 BusinessPixlogix Infotech
 
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
 
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
 
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.pdfsudhanshuwaghmare1
 
[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.pdfhans926745
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
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 DevelopmentsTrustArc
 
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...Enterprise Knowledge
 

Último (20)

Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
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...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
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
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
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
 
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...
 
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
 
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
 
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
 
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...
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
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
 
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...
 

The Devil and HTML5

  • 1. The Devil and HTML5 Myles Braithwaite http://myles.tk | me@myles.tk | @mylesb
  • 2. What is HTML? • HTML is a Markup Language. • HTML is mainly used to write web pages. • HTML is not a programming language. 2
  • 3. Why should you care? 3
  • 4. “Because browsers are now application platforms, ‘the big runtime machine’ if you will. I for one have given up several desktop apps for their online version, simply because they're much better in most cases.” Fabio FZero on the GTALUG Mailing List 4
  • 6. What is new in HTML5? 6
  • 8. The HTML layout engines use the DOCTYPE to figure out which layout mode to use. 8
  • 9. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> 9
  • 10. But in HTML5 • The DOCTYPE is only required for legacy reasons. 10
  • 13. <div id="container"> <div id="header"> <ul id="navigation"></ul> </div> <div id="body"> <div id="page"></div> <div id="sidebar"></div> </div> <div id="footer"></div> </div> 13
  • 14. <div id="container"> <header></header> <nav></nav> <article> <section></section> </article> <aside></aside> <footer></footer> </div> 14
  • 15. header, nav, article, section, aside footer { display: block; } 15
  • 16. How do you represent the date? • Tuesday, 13th July, 2010 • July 13th, 2010 • 2010, July 13th 16
  • 17. How do you represent time? • 9:58 AM • 09:58 17
  • 18. <time datetime="2010-07-13">13th July, 2010</time> <time datetime="2010-07-13">Today</time> <time datetime="2010-07-13T19:30:00-05:00">7:30 pm</time> 18
  • 19. <article> <time datetime="2010-07-13T19:30:00-05:00" pubdate> 7:30 pm </time> </article> 19
  • 20. <link rel="archives" href="/archives.html"> <link rel="author" href="/author/myles.html"> <link rel="start" href="/first-post"> <link rel="prev" href="/prev-post"> <link rel="next" href="/next-post"> <link rel="end" href="/last-post"> <link rel="up" href="/"> 20
  • 21. <p> <a href="/page/2/" class="previous" rel="prev">Previous</a> <a href="/page/1/" rel="start">1</a> <a href="/page/2/" rel="prev">2</a> <span>3</span> <a href="/page/3/" rel="next">3</a> <a href="/page/4/" rel="end">4</a> <a href="/page/3/" class="next" rel="next">Next</a> </p> 21
  • 22. <article> <h2>GTALUG Talk about HTML5 Tomorrow at 7:30pm</h2> <section> <p>I am going to be talking about HTML5 at the next GTALUG meeting.</p> </section> <p class="meta"> By <a href="http://myles.tk/" rel="author">Myles</a>; published <time datetime="2010-07-12" pubdate> yesterday</time>; tagged with <span rel="tag">GTALUG</span> &amp; <span rel="tag">HTML5</span>. </p> </article> 22
  • 24. Placeholder Text • A short hint to (word or parse) to aid the user in their data entry. • Shouldn’t be used as an alternative to <label>. 24
  • 25. <form action="." method="post" accept-charset="utf-8"> <p><label>Email <input type="text" name="email" id="id_email" placeholder="you@example.com"> </label></p> <p><input type="submit"></p> </form> 25
  • 26. 26
  • 28. Compatibility IE Firefox Chrome iPhone Android ☐ ☑ ☑ ☑ ? 28
  • 30. checkbox <input type="checkbox"> radio button <input type="radio"> password field <input type="password"> drop-down list <select><option> file picker <input type="file"> submit button <input type="submit"> plain text <input type="text"> 30
  • 31. What has been added? Email <input type="email"> Web Address <input type="url"> Number <input type="number"> Range <input type="range"> Date Pickers <input type="date"> Search <input type="search"> Colour <input type="color"> 31
  • 32. Web browser will provided the validation. 32
  • 33. If you try to submit an email field with “youexample.com” instead of “you@exmaple.com” the browser will stop you. 33
  • 36. The ability to find where the user is located. • Uses an attached GPS device. • Or the users external IP address. 36
  • 37. navigator.geolocation.getCurrentPosition(function(position){ var lat = position.coords.latitude; var log = position.coords.longitude; alert("You are at coronets " + lat + ', ' + log); }); 37
  • 40. With non of the bandwidth drawbacks 40
  • 41. Allows the web application to use a key/value database on the client computer. • This data is never transmitted to the web server (unlike cookies). 41
  • 42. Internet Explore=>8.0 • Mozilla Firefox=>3.5 • Chrome=>4.0 • Opera=>10.5 • iOS=>2.0 • Android=>2.0 42
  • 43. var first_name = localStorage.getItem("first_name"); localStorage.setItem("first_name", first_name); 43
  • 44. Web SQL Database • Allows you to use a SQLite database for local storage. 44
  • 46. Allows you to create a manifest file that list all your static content. • So it can be cached/downloaded to the clients computer. 46
  • 48. More information • WHATWG Spec <http://j.mp/dqpmc3> • Mozilla’s Docs <http://j.mp/9lrDZ8> • Apple’s Docs <http://j.mp/9D2P2C> • Google’s Using AppCache to Launch Offline <http://j.mp/97vz71>, <http:// j.mp/d4VWDN>, and <http://j.mp/ aOnzW7> 48
  • 50. Allows you to server the best video format (MP4, Ogg Vorbis, WebM, H.264) for the user. 50
  • 51. Will this kill Flash? 51
  • 52. For Video? Yes. 52
  • 54. <video id="movie" width="320" height="240" preload controls> <source src="movie.mp4" type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'> <source src="movie.webm" type='video/webm; codecs="vp8, vorbis"'> <source src="movie.ogv" type='video/ogg; codecs="theora, vorbis"'> <object width="320" height="240" type="application/x- shockwave-flash" data="flowplayer-3.2.1.swf"> <param name="movie" value="flowplayer-3.2.1.swf"> <param name="allowfullscreen" value="true"> <param name="flashvars" value='config={"clip": {"url": "http://example.org/movie.mp4", "autoPlay":false, "autoBuffering":true}}'> </object> </video> 54
  • 55. I don’t know anything about Canvas. 55
  • 57. Who’s Pushing HTML5 57
  • 62. HTML5Rocks <html5rocks.com> • YouTube HTML5 <youtube.com/html5> • Gmail supports HTML5 Drag and Drop <myl.be/6g7l> 62
  • 65. 65
  • 66. 66
  • 67. 67

Notas do Editor