SlideShare une entreprise Scribd logo
1  sur  12
PracticalHTML  . Leon Poole @creativeworld 5
Where is HTML5 at? HTML5 is in “last call” phase (Feb 2010),but was started by the Web Hypertext Application Technology Working Group (WHATWG) in 2004 Estimated that HTML5 will reach the W3C Candidate recommendation stage during 2012 Supported in Chrome, Firefox 3.5+, Opera, and Safari 4+, IE8(?) and IE9 already (JavaScript hack required to support earlier IE versions) HTML5 is at “HTML5”, not “HTML  5”
HTML5 has relatively good browser support, except for one... A little JavaScript will help IE recognise new HTML5 elements... <!--[if gte IE 6]> document.createElement('header'); document.createElement('footer'); document.createElement('section'); document.createElement('aside'); document.createElement('nav'); document.createElement('article'); document.createElement('time'); document.createElement('mark'); <![endif]-->
HTML5’s !DOCTYPE !DOCTYPE declares what type of document it is to the browser..  XHTML1.0: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Long and Complicated Seriously, who remembers all of this? HTML5: <!DOCTYPE html> Very short, easy to remember No Document Type Definition Simple!
Basic Page Structure Common HTML 4 Structure HTML5 Structure Images courtesy of A List Apart - An introduction to HTML 5 by Lachlan Hunt
Some Practical Examples of HTML5markup based on my experience in a blog environment.
HTML5: Nesting of Heading elements <article> 	 <hgroup> 		 <h1>Article title</h1> 		<h2>Article subtitle</h2> 	</hgroup> 	<section> 		<h3>Section title</h3> 		<p>Content…</p> 		<section> 		         <h4>Subsection title</h4> 		         <p>Content…</p> 		</section> 	</section> </article> <article> 	 <hgroup> 		 <h1>Article title</h1> 		<h2>Article subtitle</h2> 	</hgroup> 	<section> 		<h1>Section title</h1> 		<p>Content…</p> 		<section> <h1>Subsection title</h1> 		         <p>Content…</p> 		</section> 	</section> </article> Vs preferred
HTML5: Blog Comments Markup <body> <header><h1>My Website</h1></header> <article> 	<header><h1>My best blog post</h1></header> 	<section><p>Story you can’t stop reading</p></section> 	<footer><p>Meta data</p></footer> 	<article id="comment-2"> 		<cite>Leon Poole</cite> 		<time datetime="2010-03-15">March 18th, 2010</time>* 		<p>Comment goes in here...</p> 		<footer> 		         <p>You can <a href=“#”>Reply</a> to this comment. </p> 		</footer> </article>  <article id=“comment-3”>...etc</article> <nav> <a href=“#”>Previous Post</a> <a href=“#”>Next Post</a></nav> </article> <footer></footer></body> * To my knowledge, Microformats tools don’t parse the time element right now
HTML5: Navigation Bar <body> 	<header> 		<div class=“logo”><imgsrc=“” alt=“”></div> 		<hgroup> 			<h1>My Awesome Website</h1> 			<h2>With an dually awesome slogan</h2> 		</hgroup> 	</header> 	<nav> 	         <ul> 		<li><a href=“/”>Home</a></li> 		<li><a href=“/blog/”>Blog</a></li> 	         </ul> 	</nav> 	<article> 		<header>Practical HTML5</header> 		<section>LoremIpsum...</section> 		<footer>Copyright</footer> 	</article> 	<footer></footer> </body>
HTML5: Sidebar for a blog <aside> 	<nav> 	         <h1>My Blogroll</h1> 	         <ul> 		<li><a href="http://example.com/">Example Blog</a> 	         </ul> 	</nav> 	<nav> 	         <h1>Archives</h1> 	         <ol > 		<li><a href="/march/">March</a> 		<li><a href="/february/">February</a> 	         </ol>  	</nav> </aside> <aside> 	<h1>Twitter Feed</h1> 	<blockquote cite="http://twitter.com/creativeworld"> 	         <p>Tweet tweet.</p> 	</blockquote>  </aside>
Final thoughts... Great in concept. Future of standards-based web development looks bright. Awesome for web and apps developers. Doesn’t change too much for web designers. Wondering how HTML5 will impact on SEO...?? I love it... but I’m more excited about CSS3 ;) Thank you!
Resources & Links: HTML 5 Tag Referencehttp://www.w3schools.com/html5/html5_reference.asp

Contenu connexe

Tendances

Hour 02
Hour 02Hour 02
Hour 02dpd
 
Grddl In A Nutshell V1
Grddl In A Nutshell V1Grddl In A Nutshell V1
Grddl In A Nutshell V1Fabien Gandon
 
Formulating an Effective Search Query
Formulating an Effective Search QueryFormulating an Effective Search Query
Formulating an Effective Search QueryAhmed-Refat Refat
 
IST 561 Session2--Feb 2, 2009 Basic XHTML Concepts
IST 561 Session2--Feb 2, 2009 Basic XHTML ConceptsIST 561 Session2--Feb 2, 2009 Basic XHTML Concepts
IST 561 Session2--Feb 2, 2009 Basic XHTML ConceptsD.A. Garofalo
 
CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)
CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)
CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)Crossref
 
Building A Website
Building A WebsiteBuilding A Website
Building A Websitemarabeas
 
Local seo
Local seoLocal seo
Local seotens
 
1.1 xhtml basics
1.1 xhtml basics1.1 xhtml basics
1.1 xhtml basicsBulldogs83
 
HTML Interview Questions | Basic Html Interview Questions
HTML Interview Questions | Basic Html Interview QuestionsHTML Interview Questions | Basic Html Interview Questions
HTML Interview Questions | Basic Html Interview QuestionsHitesh Kumar
 
Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...
Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...
Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...WebMama.com Inc.
 

Tendances (16)

Hour 02
Hour 02Hour 02
Hour 02
 
Grddl In A Nutshell V1
Grddl In A Nutshell V1Grddl In A Nutshell V1
Grddl In A Nutshell V1
 
Formulating an Effective Search Query
Formulating an Effective Search QueryFormulating an Effective Search Query
Formulating an Effective Search Query
 
IST 561 Session2--Feb 2, 2009 Basic XHTML Concepts
IST 561 Session2--Feb 2, 2009 Basic XHTML ConceptsIST 561 Session2--Feb 2, 2009 Basic XHTML Concepts
IST 561 Session2--Feb 2, 2009 Basic XHTML Concepts
 
Lesson1 Intro to HTML
Lesson1 Intro to HTMLLesson1 Intro to HTML
Lesson1 Intro to HTML
 
CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)
CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)
CrossRef Secondary Query: Practice and Problems (2011 CrossRef Workshops)
 
Building A Website
Building A WebsiteBuilding A Website
Building A Website
 
Local seo
Local seoLocal seo
Local seo
 
Local seo
Local seoLocal seo
Local seo
 
1.1 xhtml basics
1.1 xhtml basics1.1 xhtml basics
1.1 xhtml basics
 
Simple blogging
Simple bloggingSimple blogging
Simple blogging
 
Embedded Metadata working group
Embedded Metadata working groupEmbedded Metadata working group
Embedded Metadata working group
 
Html
HtmlHtml
Html
 
Html links
Html linksHtml links
Html links
 
HTML Interview Questions | Basic Html Interview Questions
HTML Interview Questions | Basic Html Interview QuestionsHTML Interview Questions | Basic Html Interview Questions
HTML Interview Questions | Basic Html Interview Questions
 
Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...
Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...
Top 15 You Should Do to Maintain and Measure Search Visibility Through a Rede...
 

En vedette

Doug hovelson1
Doug hovelson1Doug hovelson1
Doug hovelson1douggles
 
Nazism in Europe during WWII
Nazism in Europe during WWIINazism in Europe during WWII
Nazism in Europe during WWIIlobb1ag
 
Pandemic Handbook Desktop 2009[1]
Pandemic Handbook Desktop 2009[1]Pandemic Handbook Desktop 2009[1]
Pandemic Handbook Desktop 2009[1]mpbeames
 
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...cresco
 
Open Source Intelligence (Os Int) Link Directory December 2009
Open Source Intelligence (Os Int) Link Directory December 2009Open Source Intelligence (Os Int) Link Directory December 2009
Open Source Intelligence (Os Int) Link Directory December 2009mpbeames
 

En vedette (6)

Doug hovelson1
Doug hovelson1Doug hovelson1
Doug hovelson1
 
Nazism in Europe during WWII
Nazism in Europe during WWIINazism in Europe during WWII
Nazism in Europe during WWII
 
Pandemic Handbook Desktop 2009[1]
Pandemic Handbook Desktop 2009[1]Pandemic Handbook Desktop 2009[1]
Pandemic Handbook Desktop 2009[1]
 
Etggs opensource
Etggs opensourceEtggs opensource
Etggs opensource
 
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
Students of Navgujarat College of Computer Applications, Ahmedabad felt excit...
 
Open Source Intelligence (Os Int) Link Directory December 2009
Open Source Intelligence (Os Int) Link Directory December 2009Open Source Intelligence (Os Int) Link Directory December 2009
Open Source Intelligence (Os Int) Link Directory December 2009
 

Similaire à Pratical HTML5

Similaire à Pratical HTML5 (20)

HTML5 - techMaine Presentation 5/18/09
HTML5 - techMaine Presentation 5/18/09HTML5 - techMaine Presentation 5/18/09
HTML5 - techMaine Presentation 5/18/09
 
HTML5
HTML5HTML5
HTML5
 
Html5
Html5 Html5
Html5
 
Html 5 a step towards semantic web
Html 5   a step towards semantic webHtml 5   a step towards semantic web
Html 5 a step towards semantic web
 
HTML5: 5 Quick Wins
HTML5:  5 Quick WinsHTML5:  5 Quick Wins
HTML5: 5 Quick Wins
 
HTML5: The Next Internet Goldrush
HTML5: The Next Internet GoldrushHTML5: The Next Internet Goldrush
HTML5: The Next Internet Goldrush
 
Understanding html
Understanding htmlUnderstanding html
Understanding html
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
Html5 Overview
Html5 OverviewHtml5 Overview
Html5 Overview
 
Html basic
Html basicHtml basic
Html basic
 
Html5 accessibility
Html5 accessibilityHtml5 accessibility
Html5 accessibility
 
HTML5 - One spec to rule them all
HTML5 - One spec to rule them allHTML5 - One spec to rule them all
HTML5 - One spec to rule them all
 
Developing Gadgets
Developing GadgetsDeveloping Gadgets
Developing Gadgets
 
Html5: What is it?
Html5: What is it? Html5: What is it?
Html5: What is it?
 
Week7
Week7Week7
Week7
 
Html5
Html5Html5
Html5
 
Html
HtmlHtml
Html
 
How To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My WebHow To Create Personal Web Pages On My Web
How To Create Personal Web Pages On My Web
 
HTML and CSS workshop
HTML and CSS workshopHTML and CSS workshop
HTML and CSS workshop
 
Tor2
Tor2Tor2
Tor2
 

Dernier

Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...amitlee9823
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja Nehwal
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...RitikaRoy32
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...sonalitrivedi431
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...amitlee9823
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...home
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja Nehwal
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Delhi Call girls
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...Call Girls in Nagpur High Profile
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxTusharBahuguna2
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️soniya singh
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Call Girls in Nagpur High Profile
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Servicearoranaina404
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...babafaisel
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdftbatkhuu1
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxmirandajeremy200221
 

Dernier (20)

Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Brookefield Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
 
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
Best VIP Call Girls Noida Sector 44 Call Me: 8448380779
 
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...Booking open Available Pune Call Girls Kirkatwadi  6297143586 Call Hot Indian...
Booking open Available Pune Call Girls Kirkatwadi 6297143586 Call Hot Indian...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Design Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptxDesign Inspiration for College by Slidesgo.pptx
Design Inspiration for College by Slidesgo.pptx
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
Call Girls in Kalkaji Delhi 8264348440 call girls ❤️
 
B. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdfB. Smith. (Architectural Portfolio.).pdf
B. Smith. (Architectural Portfolio.).pdf
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
 
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
Kala jadu for love marriage | Real amil baba | Famous amil baba | kala jadu n...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
DragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptxDragonBall PowerPoint Template for demo.pptx
DragonBall PowerPoint Template for demo.pptx
 

Pratical HTML5

  • 1. PracticalHTML . Leon Poole @creativeworld 5
  • 2. Where is HTML5 at? HTML5 is in “last call” phase (Feb 2010),but was started by the Web Hypertext Application Technology Working Group (WHATWG) in 2004 Estimated that HTML5 will reach the W3C Candidate recommendation stage during 2012 Supported in Chrome, Firefox 3.5+, Opera, and Safari 4+, IE8(?) and IE9 already (JavaScript hack required to support earlier IE versions) HTML5 is at “HTML5”, not “HTML 5”
  • 3. HTML5 has relatively good browser support, except for one... A little JavaScript will help IE recognise new HTML5 elements... <!--[if gte IE 6]> document.createElement('header'); document.createElement('footer'); document.createElement('section'); document.createElement('aside'); document.createElement('nav'); document.createElement('article'); document.createElement('time'); document.createElement('mark'); <![endif]-->
  • 4. HTML5’s !DOCTYPE !DOCTYPE declares what type of document it is to the browser.. XHTML1.0: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Long and Complicated Seriously, who remembers all of this? HTML5: <!DOCTYPE html> Very short, easy to remember No Document Type Definition Simple!
  • 5. Basic Page Structure Common HTML 4 Structure HTML5 Structure Images courtesy of A List Apart - An introduction to HTML 5 by Lachlan Hunt
  • 6. Some Practical Examples of HTML5markup based on my experience in a blog environment.
  • 7. HTML5: Nesting of Heading elements <article> <hgroup> <h1>Article title</h1> <h2>Article subtitle</h2> </hgroup> <section> <h3>Section title</h3> <p>Content…</p> <section> <h4>Subsection title</h4> <p>Content…</p> </section> </section> </article> <article> <hgroup> <h1>Article title</h1> <h2>Article subtitle</h2> </hgroup> <section> <h1>Section title</h1> <p>Content…</p> <section> <h1>Subsection title</h1> <p>Content…</p> </section> </section> </article> Vs preferred
  • 8. HTML5: Blog Comments Markup <body> <header><h1>My Website</h1></header> <article> <header><h1>My best blog post</h1></header> <section><p>Story you can’t stop reading</p></section> <footer><p>Meta data</p></footer> <article id="comment-2"> <cite>Leon Poole</cite> <time datetime="2010-03-15">March 18th, 2010</time>* <p>Comment goes in here...</p> <footer> <p>You can <a href=“#”>Reply</a> to this comment. </p> </footer> </article> <article id=“comment-3”>...etc</article> <nav> <a href=“#”>Previous Post</a> <a href=“#”>Next Post</a></nav> </article> <footer></footer></body> * To my knowledge, Microformats tools don’t parse the time element right now
  • 9. HTML5: Navigation Bar <body> <header> <div class=“logo”><imgsrc=“” alt=“”></div> <hgroup> <h1>My Awesome Website</h1> <h2>With an dually awesome slogan</h2> </hgroup> </header> <nav> <ul> <li><a href=“/”>Home</a></li> <li><a href=“/blog/”>Blog</a></li> </ul> </nav> <article> <header>Practical HTML5</header> <section>LoremIpsum...</section> <footer>Copyright</footer> </article> <footer></footer> </body>
  • 10. HTML5: Sidebar for a blog <aside> <nav> <h1>My Blogroll</h1> <ul> <li><a href="http://example.com/">Example Blog</a> </ul> </nav> <nav> <h1>Archives</h1> <ol > <li><a href="/march/">March</a> <li><a href="/february/">February</a> </ol> </nav> </aside> <aside> <h1>Twitter Feed</h1> <blockquote cite="http://twitter.com/creativeworld"> <p>Tweet tweet.</p> </blockquote> </aside>
  • 11. Final thoughts... Great in concept. Future of standards-based web development looks bright. Awesome for web and apps developers. Doesn’t change too much for web designers. Wondering how HTML5 will impact on SEO...?? I love it... but I’m more excited about CSS3 ;) Thank you!
  • 12. Resources & Links: HTML 5 Tag Referencehttp://www.w3schools.com/html5/html5_reference.asp