Created
March 25, 2019 09:18
-
-
Save sovietspy2/49af90b6173e823cb3fa73aa79458532 to your computer and use it in GitHub Desktop.
the best of html5
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
| <header> | |
| <h1>Super duper best blog ever</h1> | |
| <nav> | |
| <a href="/">Home</a> | |
| <a href="/about">About</a> | |
| <a href="/archive">Archive</a> | |
| </nav> | |
| </header> | |
| <main> | |
| <article> | |
| <header> | |
| <h1>Why you should buy more cheeses than you currently do</h1> | |
| </header> | |
| <section> | |
| <header> | |
| <h2>Part 1: Variety is spicy</h2> | |
| </header> | |
| <!-- cheesy content --> | |
| </section> | |
| <section> | |
| <header> | |
| <h2>Part 2: Cows are great</h2> | |
| </header> | |
| <!-- more cheesy content --> | |
| </section> | |
| </article> | |
| </main> | |
| <footer> | |
| <section class="contact" vocab="http://schema.org/" typeof="LocalBusiness"> | |
| <h2>Contact us!</h2> | |
| <address property="email"> | |
| <a href="mailto:[email protected]">[email protected]</a> | |
| </address> | |
| <address property="address" typeof="PostalAddress"> | |
| <p property="streetAddress">123 Main St., Suite 404</p> | |
| <p> | |
| <span property="addressLocality">Yourtown</span>, | |
| <span property="addressRegion">AK</span>, | |
| <span property="postalCode">12345</span> | |
| </p> | |
| <p property="addressCountry">United States of America</p> | |
| </address> | |
| </section> | |
| </footer> | |
| source: https://dev.to/kenbellows/stop-using-so-many-divs-an-intro-to-semantic-html-3i9i |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment