<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>My Personal Blog</title>

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta name="description" content="A simple personal blog built with pure HTML.">

</head>


<body>


    <header>

        <h1>My Personal Blog</h1>

        <p>Sharing thoughts, tutorials, and life updates.</p>

        <hr>

    </header>


    <nav>

        <a href="#">Home</a> |

        <a href="#">About</a> |

        <a href="#">Blog</a> |

        <a href="#">Contact</a>

        <hr>

    </nav>


    <main>


        <article>

            <h2>My First Blog Post</h2>

            <p><em>Published on February 27, 2026</em></p>

            

            <p>

                Welcome to my blog! This is my very first post written in pure HTML.

                Building a website from scratch helps you understand how the web works.

            </p>


            <p>

                HTML stands for HyperText Markup Language. It is the foundation

                of all websites. Even modern frameworks are built on top of HTML.

            </p>


            <p>

                I plan to share tutorials about programming, technology, and personal

                growth in future posts. Stay tuned!

            </p>


            <hr>

        </article>


        <article>

            <h2>Why Learn HTML in 2026?</h2>

            <p><em>Published on February 25, 2026</em></p>


            <p>

                Even with AI tools and website builders, understanding HTML gives

                you full control over your content.

            </p>


            <ul>

                <li>Better understanding of websites</li>

                <li>Improved troubleshooting skills</li>

                <li>Foundation for CSS and JavaScript</li>

            </ul>


            <p>

                If you are just starting your web development journey, HTML is the

                perfect place to begin.

            </p>


            <hr>

        </article>


    </main>


    <aside>

        <h3>About Me</h3>

        <p>

            Hi! I'm a tech enthusiast who loves learning new things and

            building projects from scratch.

        </p>


        <h3>Categories</h3>

        <ul>

            <li>Technology</li>

            <li>Programming</li>

            <li>Life</li>

        </ul>

        <hr>

    </aside>


    <footer>

        <p>© 2026 My Personal Blog. All rights reserved.</p>

    </footer>


</body>

</html>