<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Insight Bihar News Chanal</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      color: #333;
    }

    .wrapper {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    header {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 15px;
    }

    header .logo {
      font-size: 22px;
      font-weight: bold;
    }

    nav ul {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      list-style: none;
      margin-top: 10px;
    }

    nav ul li {
      margin: 8px 12px;
    }

    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 15px;
    }

    main {
      flex: 1;
      padding: 15px;
      max-width: 100%;
    }

    article h1 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .author {
      font-size: 13px;
      color: #777;
      margin-bottom: 15px;
    }

    .article-body {
      font-size: 15px;
      line-height: 1.7;
    }

    .article-body img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      margin: 15px 0;
      border-radius: 4px;
    }

    .sidebar {
      background: #fff;
      padding: 15px;
      margin-top: 25px;
      border-top: 1px solid #ddd;
    }

    .sidebar h2 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar ul li {
      margin-bottom: 8px;
    }

    .sidebar ul li a {
      text-decoration: none;
      color: #444;
      font-size: 14px;
    }

    footer {
      background: #222;
      color: #fff;
      text-align: center;
      padding: 10px;
    }
  </style>
</head>
<body>
  <div class="wrapper">
    <header>
      <div class="logo">Insight Bihar News</div>
      <nav>
        <ul>
          <li><a href="/index.html">Home</a></li>
          <li><a href="#">News</a></li>
          <li><a href="#">Contact</a></li>
        </ul>
      </nav>
    </header>

    <main>
      
      <! Add article Title >
      
      <article>
        <h1>Lord Richard Harringstion</h1>
        <p class="author">Insight Bihar News | Published on 03 May 2025</p>
        
        
        <! Artice starting >
        
        
        <div class="article-body">
          <p></p>
          
       <! Add Image about News >
     
          <img src="/technologypage/sepratecardpicture.html/warentbuffert.jpg" alt="News Image" loading="lazy">
          
          
         <! News Snowing After Image > 
         
         
         
          <p> </p>
        </div>
      </article>
      
      
      
      

      <div class="sidebar">
        <h2>Recent News</h2>
        <h3>Insight Bihar News Chanal<h3>
        <ul>
          <li><a href="#"></a></li>
          <li><a href="#"></a></li>
        </ul>
      </div>
    </main>

    
    
 </div>
</body>
</html>



 <div id="news-container"></div>

<script>
  const files = ['hash.html', 'news2.html', 'news3.html', 'news4.html'];

  files.forEach(file => {
    fetch(file)
      .then(res => {
        if (!res.ok) throw new Error('Fetch failed');
        return res.text();
      })
      .then(data => {
        const section = document.createElement('div');
        section.innerHTML = data;
        document.getElementById('news-container').appendChild(section);
      })
      .catch(() => {
      });
  });
</script>