<!DOCTYPE html>

<html lang="en">


<head>

    <meta charset="UTF-8">

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

    <title>Your News Website</title>

    <link rel="stylesheet" href="styles.css">

</head>


<body>

    <header>

        <h1>Your News Website</h1>

        <nav>

            <ul>

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

                <li><a href="#">Politics</a></li>

                <li><a href="#">Technology</a></li>

                <li><a href="#">Entertainment</a></li>

                <li><a href="#">Science</a></li>

            </ul>

        </nav>

    </header>


    <main>

        <article>

            <h2>Breaking News Title</h2>

            <p>Published on <time datetime="2023-01-01">January 1, 2023</time></p>

            <img src="breaking-news-image.jpg" alt="Breaking News Image">

            <p>This is the breaking news content. It could be a summary or introduction to the main story.</p>

            <a href="#">Read More</a>

        </article>


        <!-- More articles go here -->


    </main>


    <footer>

        <p>&copy; 2023 Your News Website. All rights reserved.</p>

    </footer>

</body>


</html>


Comments