SlideShare a Scribd company logo
SW Drupal Summit: HTML5+Drupal
ROCKIN'
 HTML5
         with

  DRUPAL
Southwest Drupal Summit
     January 2011
JEN SIMMONS
 designer, front end developer & drupal architect
drupaling since 2007, building websites since 1996
 creator of Bartik, the default theme in Drupal 7
         Senior Developer at Palantir.net




            jensimmons.com
           twitter: jensimmons
SLIDES AT:


jen.cm/h3
SO CAN WE USE
 HTML5 TODAY?
YES.
It was made with backwards and
forwards compatibility in mind.
Old Browser        New Browser
New Website        Old Website

     Must work both ways.
A SUPER-FAST
   HISTORY
Tim Berners-Lee
created HTML
and invented
the web.

โ€œHTML Tagsโ€
 in 1991
HTML Tags   (TBL)    1991
HTML 2.0    (IETF)   1995
HTML 3.2    (W3C)    1997
HTML 4.0    (W3C)    1997
HTML 4.01   (W3C)    1999
SW Drupal Summit: HTML5+Drupal
SW Drupal Summit: HTML5+Drupal
SW Drupal Summit: HTML5+Drupal
SW Drupal Summit: HTML5+Drupal
XHTML 1.0
 <div class="blog-post">

 .blog-post {
   color:green
 }

                 NOT
 <FONT COLOR=GREEN>
XHTML 1.1
โ€œtext/htmlโ€ mime-type not allowed
but IE canโ€™t read the xml mime-typeโ€ฆ
XHTML 2
if we knew then what we know nowโ€ฆ
Then some stu happened.
there was a meeting and this voteโ€ฆ
THE GREAT WEB
STANDARDS / SEMANTICS
SCHISM OF JUNE 2004

evolving XHTML1.0 + CSS + DOM
(including javascript) + (later) Microformats
vs.
replacing existing technology with XHTML2
+ XForms + SVG + MathML + RDFa
W3C
XHTML 2
WHATWG
HTML5
HTML 5
W3C
XHTML 2
WHATWG
HTML5 HTML
HTML 5       HTML5=CSS3
SW Drupal Summit: HTML5+Drupal
Jeremy Keith's
                              Keynote
                               AT DRUPALCON
                               COPENHAGEN



drupalradar.com/video-jeremy-keith-keynote-session
SO CAN WE USE
 HTML5 TODAY?
YES.
It was made with backwards and
forwards compatibility in mind.
<!DOCTYPE html>
HTML5
SEMANTICS
Simpli๏ฌed Document Head

 <!DOCTYPE html>
 <meta charset="utf-8" />
 <script src="๏ฌle.js"></script>
 <link rel="stylesheet" href="๏ฌle.css" />
Drupal Document Head

        $head
       $styles
       $scripts
HTML5
  TOOLS
 MODULE


drupal.org/project/html5_tools
New Structural Elements
<section>    <aside>
<article>    <nav>
<header>     <pubdate>
<footer>     + outlining
node.tpl.php
<article id="node-title" class="node clear๏ฌx" >
 <header>
   <h1 class="title"><a href="xxx">My First Node</a></h2
 </header>
 <footer>Published on <time datetime=2011-01-22 pubdate>Jan 22</time>
 </footer>
 <p>Blah blah blah</p>
 <p>Blah blah blah</p>
 <footer>
   <div class="taxonomy"><ul><li><a>HTML5</a></li></ul></div>
 </footer>
</article> <!-- /node-->
Supporting New Elements

         $submitted
        Menu system
  Filtered HTML input format
Other New (or re-educated) Elements
  <mark>           <progress>
  <time>           <small>
  <pubdate>        <ruby>
  <meter>          + more!
HTML5
   BASE
  THEME


drupal.org/project/html5_base
ARIA
Accessible Rich Internet Applications
       roles, states and properties
ARIA: Landmark Roles
 <header role="banner">
 <div role="main">
 <nav role="navigation">
ARIA: Landmarks
HTML <div role="main">โ€ฆ</div>

CSS     div[role=main] {
             color:#999;
         }
ARIA Roles
Accessible Rich Internet Applications

W3C Project, http://www.w3.org/TR/
wai-aria

A List Apart, April 2007, http://
www.alistapart.com/articles/waiaria
HTML5
FORMS
FORMS


<label for="favorite-cms">Your Favorite
CMS</label>

<input id="favorite-cms" name="favorite-cms"
type="text" placeholder="Drupal. What else?" />
            />
HTML5 Forms
<input type="text">    <input type="range">

<input type="email">   <input type="color">

<input type="url">     <input type="text">

<input type="date">    <input type="tel">

<input type="time">    <input type="week">
*http://diveintohtml5.org/forms.html
HTML5 Forms
date picker
search box
number as a slider with a range
color picker
host.sonspring.com/formalize/jquery_demo.html
          http://sonspring.com/journal/formalize-css
HTML5 Form
         Attributes
autocomplete, min, max, multiple, pattern,
step, required, placeholder

<input type="email" required>

<input type="range" min=1 max=11 name=tap>
<label for="email">Email address</label>
<input id="email" name="email" type="email" />

<label for="website">Website </label>
<input id="website" name="website" type="url" />

<label for="phone">Phone number</label>
<input id="phone" name="phone" type="tel" />

<label for="number">How many?</label>
<input id="number" name="number" type="number"
min="0" max="11" step="1" value="5"/>
SW Drupal Summit: HTML5+Drupal
HTML5
  TOOLS
 MODULE


drupal.org/project/html5_tools
ELEMENTS
 MODULE


drupal.org/project/elements
PUT HTML5
           FORM INPUT
             ELEMENT
          SUPPORT INTO
            D7 CORE?

drupal.org/node/675348
MORE HTML5
AWESOMENESS
HTML5
VIDEO
AUDIO
GAMES
REALLY COOL.
<video>
 <audio>
<canvas>
HTML5
OTHER
 APIs
HTML5 OTHER APIs
Geolocation    Web Workers
Communication Web Storage
APIs
              O ine
Websockets    Applications
SW Drupal Summit: HTML5+Drupal
LEARN
MORE
Jeremy Keith's
                              Keynote
                               AT DRUPALCON
                               COPENHAGEN



drupalradar.com/video-jeremy-keith-keynote-session
HTML5 for Web Designers
    Jeremy Keith
            from A Book Apart
    books.alistapart.com/products/html5-for-web-designers
Introducing
HTML5
Bruce Lawson
and
Remy Sharp
introducinghtml5.com
Pro HTML5
Programming
Peter Lubbers,
Brian Albers,
and Frank Salim
prohtml5.com
THE SPEC ITSELF




dev.w3.org/html5/spec/Overview.html
DRUPALLY
 HTML5
ON
TWITTER


    @drupalhtml5
HTML5
DRUPAL
GROUP
groups.drupal.org/html5
   irc: #drupal-html5
HTML5
  TOOLS
 MODULE


drupal.org/project/html5_tools
HTML5
   BASE
  THEME


drupal.org/project/html5_base
SW Drupal Summit: HTML5+Drupal
SW Drupal Summit: HTML5+Drupal
ME
 jensimmons.com
twitter: jensimmons
PLEASE COMMENT
  AND SHARE AT

jen.cm/h3

More Related Content

What's hot (20)

PDF
Bootstrap Framework and Drupal
Jim Birch
ย 
PDF
Building, Collaborating and Scaling Drupal Distributions for Federated Organi...
Acquia
ย 
PDF
Introduction to html 5
Nir Elbaz
ย 
PDF
Child Theme
Shinichi Nishikawa
ย 
PPT
Freelancer Weapons of mass productivity
Gregg Coppen
ย 
PDF
Introduction to Drupal, Wayne Eaker, Nov 11, 09
Lunch Ann Arbor Marketing
ย 
PDF
Web Standards
Helior Colorado
ย 
PDF
What is Drupal? An Introduction to Drupal 8
Suzanne Dergacheva
ย 
PDF
Bootstrap 3 Basic - Bangkok WordPress Meetup
Woratana Perth Ngarmtrakulchol
ย 
PPTX
5 things STILL! TOO! HARD! in Plone 5
Dylan Jay
ย 
PPTX
Using Bootstrap in Drupal 7
Ivan Zugec
ย 
PDF
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
freshlybakedpixels
ย 
PDF
Web Programming - 1st TA Session
Colin Su
ย 
PDF
Theming in WordPress - Where do I Start?
Edmund Turbin
ย 
PDF
Component Driven Design and Development
Cristina Chumillas
ย 
KEY
Building a Mobile Drupal Site
Mark Jarrell
ย 
PDF
WordCamp Bournemouth 2014 - Designing with data in WordPress
Jonny Allbut
ย 
PDF
WordCamp Birmingham 2015 - Theme building tricks of the trade
Jonny Allbut
ย 
PDF
X tag with web components - joe ssekono
Joseph Ssekono
ย 
PDF
Modern Front-End Development
mwrather
ย 
Bootstrap Framework and Drupal
Jim Birch
ย 
Building, Collaborating and Scaling Drupal Distributions for Federated Organi...
Acquia
ย 
Introduction to html 5
Nir Elbaz
ย 
Child Theme
Shinichi Nishikawa
ย 
Freelancer Weapons of mass productivity
Gregg Coppen
ย 
Introduction to Drupal, Wayne Eaker, Nov 11, 09
Lunch Ann Arbor Marketing
ย 
Web Standards
Helior Colorado
ย 
What is Drupal? An Introduction to Drupal 8
Suzanne Dergacheva
ย 
Bootstrap 3 Basic - Bangkok WordPress Meetup
Woratana Perth Ngarmtrakulchol
ย 
5 things STILL! TOO! HARD! in Plone 5
Dylan Jay
ย 
Using Bootstrap in Drupal 7
Ivan Zugec
ย 
Stop reinventing the wheel: Build Responsive Websites Using Bootstrap
freshlybakedpixels
ย 
Web Programming - 1st TA Session
Colin Su
ย 
Theming in WordPress - Where do I Start?
Edmund Turbin
ย 
Component Driven Design and Development
Cristina Chumillas
ย 
Building a Mobile Drupal Site
Mark Jarrell
ย 
WordCamp Bournemouth 2014 - Designing with data in WordPress
Jonny Allbut
ย 
WordCamp Birmingham 2015 - Theme building tricks of the trade
Jonny Allbut
ย 
X tag with web components - joe ssekono
Joseph Ssekono
ย 
Modern Front-End Development
mwrather
ย 

Similar to SW Drupal Summit: HTML5+Drupal (20)

PDF
HTML5 Drupal Working Group
Jen Simmons
ย 
PDF
Html5 coredevsummit
Jen Simmons
ย 
PPT
Html5 drupal7 with mandakini kumari(1)
Mandakini Kumari
ย 
PDF
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Gaurav Mishra
ย 
ODP
Up Up and Above HTML 5
Sam Dias
ย 
PPTX
Introduction to HTML5 and CSS3 (revised)
Joseph Lewis
ย 
DOC
HTML5 vs Flash : Term paper at VGSOM, IIT Kharagpur
Kanishka Chakraborty
ย 
PPT
Html5 basics
sagaroceanic11
ย 
PDF
HTML5: features with examples
Alfredo Torre
ย 
KEY
Introduction to HTML5/CSS3 In Drupal 7
Mediacurrent
ย 
PPT
Introduction to HTML5
IT Geeks
ย 
PDF
[edUiconf] HTML5 does all thatโ€ฆ and i can haz cheeseburger? You bet!
Christopher Schmitt
ย 
PPTX
Intro to Front-End Web Devlopment
damonras
ย 
PDF
[In Control 2010] HTML5
Christopher Schmitt
ย 
PPTX
Chapter 2 introduction to html5
nobel mujuji
ย 
PPT
HTML 5
Prof. Erwin Globio
ย 
PPT
1._Introduction_to_HTML5 les fonction et les balises
aziztara99
ย 
PPT
1._Introduction_to_HTML5 Web Designing.ppt
Divya573916
ย 
PPT
1._Introduction_tyytggyyyyy666o_HTML5.ppt
meganath16032003
ย 
PPT
1._Introduction_to_HTML5 powerpoint presentation
JohnLagman3
ย 
HTML5 Drupal Working Group
Jen Simmons
ย 
Html5 coredevsummit
Jen Simmons
ย 
Html5 drupal7 with mandakini kumari(1)
Mandakini Kumari
ย 
Drupal7 Theming session on the occassion of Drupal7 release party in Delhi NCR
Gaurav Mishra
ย 
Up Up and Above HTML 5
Sam Dias
ย 
Introduction to HTML5 and CSS3 (revised)
Joseph Lewis
ย 
HTML5 vs Flash : Term paper at VGSOM, IIT Kharagpur
Kanishka Chakraborty
ย 
Html5 basics
sagaroceanic11
ย 
HTML5: features with examples
Alfredo Torre
ย 
Introduction to HTML5/CSS3 In Drupal 7
Mediacurrent
ย 
Introduction to HTML5
IT Geeks
ย 
[edUiconf] HTML5 does all thatโ€ฆ and i can haz cheeseburger? You bet!
Christopher Schmitt
ย 
Intro to Front-End Web Devlopment
damonras
ย 
[In Control 2010] HTML5
Christopher Schmitt
ย 
Chapter 2 introduction to html5
nobel mujuji
ย 
1._Introduction_to_HTML5 les fonction et les balises
aziztara99
ย 
1._Introduction_to_HTML5 Web Designing.ppt
Divya573916
ย 
1._Introduction_tyytggyyyyy666o_HTML5.ppt
meganath16032003
ย 
1._Introduction_to_HTML5 powerpoint presentation
JohnLagman3
ย 
Ad

More from Jen Simmons (6)

PDF
Jensimmons html5live-responsivedesign
Jen Simmons
ย 
PDF
Let's HTML5ify drupal
Jen Simmons
ย 
PDF
Rockin' HTML5 With Drupal
Jen Simmons
ย 
PDF
Theming the-enterprise-nyse-jensimmons
Jen Simmons
ย 
PDF
CSS3: The Future is Now at Drupal Design Camp Boston
Jen Simmons
ย 
PDF
CSS3: The Future is Now at DrupalCon San Francisco
Jen Simmons
ย 
Jensimmons html5live-responsivedesign
Jen Simmons
ย 
Let's HTML5ify drupal
Jen Simmons
ย 
Rockin' HTML5 With Drupal
Jen Simmons
ย 
Theming the-enterprise-nyse-jensimmons
Jen Simmons
ย 
CSS3: The Future is Now at Drupal Design Camp Boston
Jen Simmons
ย 
CSS3: The Future is Now at DrupalCon San Francisco
Jen Simmons
ย 
Ad

Recently uploaded (20)

PDF
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
ย 
PPTX
๐™ณ๐š˜๐š ๐š—๐š•๐š˜๐šŠ๐šโ€”Wondershare Filmora Crack 14.0.7 + Key Download 2025
sebastian aliya
ย 
PPSX
Usergroup - OutSystems Architecture.ppsx
Kurt Vandevelde
ย 
PPTX
CapCut Pro Crack For PC Latest Version {Fully Unlocked} 2025
pcprocore
ย 
PDF
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
ย 
PDF
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
ย 
PDF
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
ย 
PDF
โ€œMPU+: A Transformative Solution for Next-Gen AI at the Edge,โ€ a Presentation...
Edge AI and Vision Alliance
ย 
PPTX
Paycifi - Programmable Trust_Breakfast_PPTXT
FinTech Belgium
ย 
PDF
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
ย 
PDF
Unlocking FME Flowโ€™s Potential: Architecture Design for Modern Enterprises
Safe Software
ย 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
ย 
PDF
Python Conference Singapore - 19 Jun 2025
ninefyi
ย 
PDF
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
ย 
PDF
Database Benchmarking for Performance Masterclass: Session 2 - Data Modeling ...
ScyllaDB
ย 
PPTX
Enabling the Digital Artisan โ€“ keynote at ICOCI 2025
Alan Dix
ย 
PDF
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
ย 
PDF
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
ย 
PDF
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
ย 
DOCX
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
ย 
Java 25 and Beyond - A Roadmap of Innovations
Ana-Maria Mihalceanu
ย 
๐™ณ๐š˜๐š ๐š—๐š•๐š˜๐šŠ๐šโ€”Wondershare Filmora Crack 14.0.7 + Key Download 2025
sebastian aliya
ย 
Usergroup - OutSystems Architecture.ppsx
Kurt Vandevelde
ย 
CapCut Pro Crack For PC Latest Version {Fully Unlocked} 2025
pcprocore
ย 
Hyderabad MuleSoft In-Person Meetup (June 21, 2025) Slides
Ravi Tamada
ย 
Cracking the Code - Unveiling Synergies Between Open Source Security and AI.pdf
Priyanka Aash
ย 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
ย 
โ€œMPU+: A Transformative Solution for Next-Gen AI at the Edge,โ€ a Presentation...
Edge AI and Vision Alliance
ย 
Paycifi - Programmable Trust_Breakfast_PPTXT
FinTech Belgium
ย 
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
ย 
Unlocking FME Flowโ€™s Potential: Architecture Design for Modern Enterprises
Safe Software
ย 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Poster...
Michele Kryston
ย 
Python Conference Singapore - 19 Jun 2025
ninefyi
ย 
Hello I'm "AI" Your New _________________
Dr. Tathagat Varma
ย 
Database Benchmarking for Performance Masterclass: Session 2 - Data Modeling ...
ScyllaDB
ย 
Enabling the Digital Artisan โ€“ keynote at ICOCI 2025
Alan Dix
ย 
FME as an Orchestration Tool with Principles From Data Gravity
Safe Software
ย 
Darley - FIRST Copenhagen Lightning Talk (2025-06-26) Epochalypse 2038 - Time...
treyka
ย 
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
ย 
Daily Lesson Log MATATAG ICT TEchnology 8
LOIDAALMAZAN3
ย 

SW Drupal Summit: HTML5+Drupal