<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: MD Al Amin</title>
    <description>The latest articles on DEV Community by MD Al Amin (@md_alamin_5ab00a78065443).</description>
    <link>https://dev.to/md_alamin_5ab00a78065443</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3743805%2Fea9946b8-6bf1-429d-8ab4-ec641e54e1ac.jpg</url>
      <title>DEV Community: MD Al Amin</title>
      <link>https://dev.to/md_alamin_5ab00a78065443</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/md_alamin_5ab00a78065443"/>
    <language>en</language>
    <item>
      <title>How I Built a Fast Local Business Website with HTML5 &amp; JSON-LD Schema (Case Study)</title>
      <dc:creator>MD Al Amin</dc:creator>
      <pubDate>Sat, 31 Jan 2026 12:22:14 +0000</pubDate>
      <link>https://dev.to/md_alamin_5ab00a78065443/how-i-built-a-fast-local-business-website-with-html5-json-ld-schema-case-study-45oi</link>
      <guid>https://dev.to/md_alamin_5ab00a78065443/how-i-built-a-fast-local-business-website-with-html5-json-ld-schema-case-study-45oi</guid>
      <description>&lt;p&gt;Hi developers! 👋&lt;/p&gt;

&lt;p&gt;I run a local service business in Bangladesh called &lt;strong&gt;[City Mistri]&lt;/strong&gt;, specializing in Aluminum and Glass solutions. Instead of using heavy CMS like WordPress, I decided to build my website using &lt;strong&gt;Pure HTML5 &amp;amp; CSS3&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Here is how I optimized it for Local SEO in 2026 using Schema Markup.&lt;/p&gt;

&lt;h2&gt;
  
  
  🚀 The Goal
&lt;/h2&gt;

&lt;p&gt;I wanted a site that loads instantly on mobile networks (3G/4G) and ranks high for keywords like "Folding Door Price".&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ The Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; HTML5, CSS3 (Grid &amp;amp; Flexbox)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;SEO:&lt;/strong&gt; JSON-LD Schema (Product &amp;amp; LocalBusiness)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hosting:&lt;/strong&gt; GitHub Pages / Custom Domain&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  💡 The "Secret" Weapon: JSON-LD Schema
&lt;/h2&gt;

&lt;p&gt;Google needs to understand that I am selling a &lt;em&gt;Service&lt;/em&gt;, not just a blog post. I switched from &lt;code&gt;Product&lt;/code&gt; schema to &lt;code&gt;Service&lt;/code&gt; schema for better accuracy.&lt;/p&gt;

&lt;p&gt;Here is the snippet I used for my &lt;a href="https://www.citymistri.xyz/aluminum-folding-door-price-bangladesh-2026" rel="noopener noreferrer"&gt;Aluminum Folding Door Page&lt;/a&gt;:&lt;/p&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
json
&amp;lt;script type="application/ld+json"&amp;gt;
{
  "@context": "[https://schema.org](https://schema.org)",
  "@type": "Service",
  "name": "Aluminum Folding Door Installation",
  "provider": {
    "@type": "LocalBusiness",
    "name": "City Mistri"
  },
  "areaServed": "Dhaka",
  "hasOfferCatalog": {
    "@type": "OfferCatalog",
    "name": "Folding Door Price List 2026",
    "itemListElement": [
      {
        "@type": "Offer",
        "itemOffered": {
          "@type": "Service",
          "name": "Max Aluminum Folding Door"
        },
        "price": "1700",
        "priceCurrency": "BDT"
      }
    ]
  }
}
📱 Mobile Responsiveness
Since most of my customers are on mobile, I used a Card-based layout for my price tables instead of standard HTML tables.

CSS
@media(max-width: 768px) {
  .price-table tr {
      display: block;
      width: 90%;
      margin: 0 auto 20px auto;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }
}
🏁 The Result
The site scores 100/100 on PageSpeed Insights and is already getting indexed for long-tail keywords.

Check out the live project here: City Mistri - Folding Door Price

Let me know if you have any tips on how to improve the footer design!

Happy Coding! 💻
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>seo</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
