+ 1
How to utilize article, section and aside elements together?
2 Antworten
+ 1
This is an exemple ^_^
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf_8">
        <title>Test</title>
    </head>
    <body>
        <header>
            <img class="logo" src="logo.png" alt="logo">
            <nav>
                <ul>
                    <li>Home</li>
                    <li>Services</li>
                    <li>Contact</li>
                </ul>
            </nav>
        </header>
        <section>
            <article>
                This Is Article with BLA BLA BLA ....
            </article>
            <aside>
                <h1>Top Members</h1>
                <ul>
                    <li>Hamza</li>
                    <li>Abdou</li>
                    <li>Karim</li>   
                </ul>
            </aside>
        </section>
        <footer>
            All Rights Reserved By sololearn.com
        </footer>
    </body>
</html>



