Last active
December 26, 2015 17:08
-
-
Save invmatt/7184647 to your computer and use it in GitHub Desktop.
Base starter html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="description" content="A description about your site" /> | |
| <meta name="keywords" content="keywords, separated, by, comma" /> | |
| <title>Untitled Document</title> | |
| <link rel="shortcut icon" href="favicon.ico" /> | |
| <link rel="stylesheet" href="css/style.css" media="screen" /> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
| <script>window.jQuery || document.write('<script src="link/to/local/js">\x3C/script>')</script> | |
| </head> | |
| <body> | |
| <section id="header"> | |
| <header> | |
| <h1><a href="#">Site Title</a></h1> | |
| <nav> | |
| <ul> | |
| <li><a href="#">Home</a></li> | |
| <li><a href="#">About</a></li> | |
| <li><a href="#">Contact</a></li> | |
| </ul> | |
| </nav> | |
| </header> | |
| </section> | |
| <section id="main"> | |
| <article> | |
| <hgroup> | |
| <a href="#"> | |
| <h1>Heading Title</h1> | |
| <h2>Heading Title 2</h2> | |
| </a> | |
| </hgroup> | |
| <p>Article Filler</p> | |
| </article> | |
| <aside> | |
| Sidebar Filler | |
| </aside> | |
| </section> | |
| <section id="footer"> | |
| <footer> | |
| © Copyright Year by Author. All Rights Reserved. | |
| </footer> | |
| </section> | |
| <script type="text/javascript"> | |
| var _gaq = _gaq || []; | |
| _gaq.push(['_setAccount', 'XX-XXXXXXX-XX']); | |
| _gaq.push(['_trackPageview']); | |
| (function() { | |
| var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
| ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
| var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | |
| })(); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment