Write

Afzal Hosen Mandal - Jun 26 - - Dev Community

<!DOCTYPE html>




Afzal & Associates - Legal Services in Narsingdi
name="description"
content="Expert legal services in Narsingdi specializing in Civil Litigation, Criminal Defense, Property Law, and more. Afzal & Associates offers trusted and personalized legal solutions."
/>
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
/>
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<br> body {<br> font-family: Arial, sans-serif;<br> margin: 0;<br> padding: 0;<br> }<br> header {<br> background-color: #333;<br> padding: 20px;<br> text-align: center;<br> }<br> header img {<br> max-width: 200px;<br> }<br> nav {<br> margin-top: 10px;<br> }<br> nav ul {<br> list-style-type: none;<br> padding: 0;<br> }<br> nav ul li {<br> display: inline;<br> margin: 0 15px;<br> }<br> nav ul li a {<br> color: white;<br> text-decoration: none;<br> font-weight: bold;<br> }<br> nav ul li a:hover {<br> text-decoration: underline;<br> }<br> section {<br> padding: 50px;<br> text-align: center;<br> }<br> footer {<br> background-color: #333;<br> color: white;<br> text-align: center;<br> padding: 20px;<br> position: relative;<br> bottom: 0;<br> width: 100%;<br> }<br> footer ul {<br> list-style-type: none;<br> padding: 0;<br> }<br> footer ul li {<br> display: inline;<br> margin: 0 10px;<br> }<br> footer ul li a {<br> color: white;<br> text-decoration: none;<br> }<br> footer ul li a:hover {<br> text-decoration: underline;<br> }<br> address {<br> margin-top: 20px;<br> font-style: normal;<br> }<br>


<!-- HEADER SECTION -->

src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh98rJ08mofXIAIjwBWU1gO8e8NKdmtC4LfkRkLYGKFCIZBPQ3m6lB8A7D4Dik5l4qilEjPqEUUJPQnoOzi5nkAGlexDcFoGGuYMl-BKGAJwrVDGXltiv_vpVeGrdgM6xJP38-lJnqiQnKTOA8Wd_8geFu1vWdCxNqHnBxOv8LS7nXextSSkcpfHgzi1OE/s320/IMG_9204-PhotoRoom.png-PhotoRoom.png"
alt="Afzal & Associates Logo"
/>
<!-- NAVIGATION MENU -->



<!-- MAIN CONTENT SECTION -->
<section>
  <h1>Welcome to Afzal & Associates</h1>
  <p>
    We provide expert legal services in Narsingdi, specializing in Civil
    Litigation, Criminal Defense, Property Law, and more. Our team is
    committed to offering personalized solutions and trusted representation
    for all your legal needs.
  </p>
  <a href="https://advafzal.blogspot.com/p/contact-us.html">
    <button style="padding: 10px 20px; background-color: #007BFF; color: white; border: none; cursor: pointer;">Get a Free Consultation</button>
  </a>
</section>

<!-- SERVICES SECTION -->
<section>
  <h2>Our Services</h2>
  <div style="display: flex; justify-content: space-around;">
    <div>
      <h3>Civil Litigation</h3>
      <p>Expert legal representation in disputes and court matters.</p>
      <a href="https://advafzal.blogspot.com/p/civil-litigation.html">Learn More</a>
    </div>
    <div>
      <h3>Criminal Defense</h3>
      <p>Strong defense against all criminal charges in Narsingdi.</p>
      <a href="https://advafzal.blogspot.com/p/criminal-defense.html">Learn More</a>
    </div>
    <div>
      <h3>Property Law</h3>
      <p>Expert assistance in real estate and property matters.</p>
      <a href="https://advafzal.blogspot.com/p/property-law.html">Learn More</a>
    </div>
  </div>
</section>

<!-- TESTIMONIAL SECTION -->
<section>
  <h2>What Our Clients Say</h2>
  <p>"Afzal & Associates handled my case with professionalism and care. Highly recommend their services!"</p>
</section>

<!-- BLOG PREVIEW SECTION -->
<section>
  <h2>Latest Blog Posts</h2>
  <ul id="rss-feed"></ul>
</section>

<!-- FOOTER SECTION -->
<footer>
  <p>&copy; 2023 Afzal & Associates</p>
  <ul>
    <li><a href="https://www.facebook.com/storieswithafzal">Facebook</a></li>
    <li><a href="https://twitter.com/afzal_tipu">Twitter</a></li>
    <li><a href="https://www.linkedin.com/in/afzalhosentipu">LinkedIn</a></li>
  </ul>
  <address>
    Address: Upojila gate, Narsingdi judge court road, Narsingdi, Dhaka,
    Bangladesh, 1600<br />
    Phone Number: +8801726634656 <br />
    Email Address: advafzalhosen@gmail.com
  </address>
</footer>

<script src="https://cdnjs.cloudflare.com/ajax/libs/rss-parser/3.12.0/rss-parser.min.js"></script>
<script>
  const rssParser = new RSSParser();
  const rssFeedUrl = 'https://advafzal.blogspot.com/feeds/posts/default';
  const feedContainer = document.getElementById('rss-feed');

  rssParser.parseURL(rssFeedUrl, function(err, feed) {
    if (err) throw err;
    feed.items.forEach(function(entry) {
      const listItem = document.createElement('li');
      listItem.innerHTML = '<h3><a href="' + entry.link + '">' + entry.title + '</a></h3>' +
                           '<p>' + entry.contentSnippet + '</p>';
      feedContainer.appendChild(listItem);
    });
  });
</script>
. . . . .
Terabox Video Player