HTML Guide

Here is a basic HTML5 guided template to get you up and running when you start a new project.

<!DOCTYPE html>
<html>

    <head>
        <title>My Website</title>
    </head>

    <body>

        <header>
            <h1>My Site</h1>
        </header>

        <nav>
            <ul>
                <li>Home</li>
                <li>About</li>
                <li>Contact</li>
            </ul>
        </nav>

        <section>
            <h1>My Article</h1>
            <article>
                </p>This is my article paragraph</p>
            </article>
        </section>

        <footer>
            <p>This is the footer section</p>
        </footer>

    </body>

</html>