Return to Snippet

Revision: 62764
at March 11, 2013 17:42 by apphp-snippets


Initial Code
<!DOCTYPE HTML>
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Your Website Name</title>
</head>
<body>
    <header>
        <nav>
            <ul>
                <li>Your Menu</li>
            </ul>
        </nav>
    </header>    
    <section>
        <article>
            <header>
                <h2>Article Title</h2>
                <p>text...</p>
            </header>
            <p>text...</p>
        </article>
        <article>
            <header>
                <h2>Article Title</h2>
                <p>text...</p>
            </header>
            <p>text...</p>
        </article>
    </section>
    <aside>
        <h2>Section Title</h2>
        <p>text...</p>
    </aside>
    <footer>
        <p>Copyright 2012 Your name</p>
    </footer>
</body>
</html>

Initial URL
http://www.apphp.com/index.php?snippet=html-5-page-structure

Initial Description
This example is a basic HTML5 page structure that you can use for developing of your HTML5 website layout.

Initial Title
Page Structure in HTML5

Initial Tags
html, page, html5

Initial Language
Haskell