/ Published in: HTML
URL: http://bcmoney-mobiletv.com/blog/2011/03/02/html5-feature-template-and-barebones-html5-skeleton/
Basic HTML5 skeleton template, including jQuery, for getting up and running quickly with HTML5
Expand |
Embed | Plain Text
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <!--[if lt IE 9]> <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <style type="text/css"> header, section, footer, aside, nav, article, figure, audio, video, canvas { display:block; } </style> </head> <body> <div id="wrapper"> <header> Header </header> <nav> Nav </nav> <section id="content"> <article> Article </article> </section> <aside> Sidebar </aside> <footer> Footer </footer> </div> </body> </html>
You need to login to post a comment.
