JSFiddle - React, Tailwind, and code Playground

by Gopinath Kaliappan

HTML

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>Zozor - The Website</title>
    </head>

    <body>
        <header>
            <h1>Zozor</h1>
            <h2>Travel diaries</h2>
        </header>
        
        <nav>
            <ul>
                <li><a href="#">Home</a></li>
                <li><a href="#">Blog</a></li>
                <li><a href="#">Resume</a></li>
            </ul>
        </nav>
        
        <section>
            <aside>
                <h1>About the author</h1>
                <p>It's me, Zozor! I was born on November 23, 2005.</p>
            </aside>
            <article>                
                <h1>I'm a great traveller</h1>
                <p>Bla bla bla bla (article text)</p>
            </article>
        </section>
        
        <footer>
            <p>Zozor Copyright - All rights reserved<br />
            <a href="#">Contact me!</a></p>
        </footer>
        
    </body>
</html>