/ Published in: HTML
A Barebones html5 frame work header, intro, main_content, footer. Also includes link to main.css and jquery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<!DOCTYPE html> <html lang = "en"> <head> <meta charset="utf-8"> <!-- import stylesheets --> <link rel="stylesheet" href="styles/main.css"> <!-- in-page styles --> <style> body { background:transparent; color:#333; font-size:16px line-height:1.5em; margin:0; padding:0; } </style> <!-- jquery import --> <!-- Initalize Jquery --> <script> $(document).ready(function() { }); </script> <!-- in page scripting--> <script> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <header class="header"> </header><!-- end .header --> <section class="intro_container"> </section><!-- end .intro_container --> <section class="main_content"> </section><!-- end main_content --> <footer class="footer"> </footer><!-- end footer --> </body> </html>