HTML Boilerplate

<!DOCTYPE html>
<html>
<head>
<title><!-- add title here --></title>
<meta name="description" content="<!-- add description here -->">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<styles><!-- add styles here --></styles>
</head>
<body>
    <header>
        <nav>
            <ul>
                <li></li>
                <li></li>
                <li></li>
            </ul>
        </nav>
    </header>
    <main>
        <article>
            <header></header>
            <section></section>
            <section></section>
            <footer></footer>
        </article>
        <aside></aside>
        <aside></aside>
    </main>
    <footer></footer>
<scripts><!-- add scripts here --></scripts>
</body>
</html>