Create news page on website

Here's a basic template for creating a news page on a website:

News Page Template

Header

News Section

Sidebar

Footer

CSS Styles

HTML Structure

Example Code

Here's an example of what the HTML code for the news page might look like:

<!-- Header -->
<header>
  <nav>
    <ul>
      <li><a rel="nofollow" target="_blank" href="#">Home</a></li>
      <li><a rel="nofollow" target="_blank" href="#">About</a></li>
      <li><a rel="nofollow" target="_blank" href="#">Contact</a></li>
    </ul>
  </nav>
  <h1>Latest News</h1>
</header>

<!-- News Section -->
<main>
  <section>
    <h2>Article 1</h2>
    <p>Summary of Article 1</p>
    <a rel="nofollow" target="_blank" href="#">Read More</a>
  </section>
  <section>
    <h2>Article 2</h2>
    <p>Summary of Article 2</p>
    <a rel="nofollow" target="_blank" href="#">Read More</a>
  </section>
  <!--... -->
  <nav>
    <ul>
      <li><a rel="nofollow" target="_blank" href="#">Previous</a></li>
      <li><a rel="nofollow" target="_blank" href="#">Next</a></li>
    </ul>
  </nav>
</main>

<!-- Sidebar -->
<aside>
  <h2>Categories</h2>
  <ul>
    <li><a rel="nofollow" target="_blank" href="#">Business</a></li>
    <li><a rel="nofollow" target="_blank" href="#">Technology</a></li>
    <li><a rel="nofollow" target="_blank" href="#">Entertainment</a></li>
  </ul>
  <h2>Tags</h2>
  <ul>
    <li><a rel="nofollow" target="_blank" href="#">Keyword 1</a></li>
    <li><a rel="nofollow" target="_blank" href="#">Keyword 2</a></li>
    <li><a rel="nofollow" target="_blank" href="#">Keyword 3</a></li>
  </ul>
  <h2>Archives</h2>
  <ul>
    <li><a rel="nofollow" target="_blank" href="#">January 2023</a></li>
    <li><a rel="nofollow" target="_blank" href="#">February 2023</a></li>
    <li><a rel="nofollow" target="_blank" href="#">March 2023</a></li>
  </ul>
  <p>Contact us at <a rel="nofollow" target="_blank" href="mailto:[email protected]">[email protected]</a> or <a rel="nofollow" target="_blank" href="tel:555-555-5555">555-555-5555</a>.</p>
</aside>

<!-- Footer -->
<footer>
  <p>Copyright 2023 Example Company</p>
  <ul>
    <li><a rel="nofollow" target="_blank" href="#" target="_blank">Facebook</a></li>
    <li><a rel="nofollow" target="_blank" href="#" target="_blank">Twitter</a></li>
    <li><a rel="nofollow" target="_blank" href="#" target="_blank">LinkedIn</a></li>
  </ul>
  <form>
    <input type="search" placeholder="Search...">
    <button type="submit">Search</button>
  </form>
</footer>

Note that this is just a basic template, and you'll need to customize it to fit your specific needs and design preferences.