Wednesday, July 3, 2024

news

 <!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Latest News</title>

</head>

<body>

    <h1>Latest News</h1>


    <!-- News Section -->

    <div id="news-section">

        <!-- News articles will be dynamically added here -->

    </div>


    <!-- Search Form -->

    <form id="search-form">

        <input type="text" id="search-query" placeholder="Search news...">

        <button type="submit">Search</button>

    </form>


    <!-- Search Results -->

    <div id="search-results">

        <!-- Search results will be dynamically added here -->

    </div>


    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

    <script src="script.js"></script>

</body>

</html>


No comments:

Post a Comment