<?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 Mostafa Niloy</title>
    <description>The latest articles on DEV Community by MD Mostafa Niloy (@md-mostafa-niloy).</description>
    <link>https://dev.to/md-mostafa-niloy</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%2F3581194%2F3485c5bd-cdfb-40e5-a338-f241c2aa07f0.png</url>
      <title>DEV Community: MD Mostafa Niloy</title>
      <link>https://dev.to/md-mostafa-niloy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/md-mostafa-niloy"/>
    <language>en</language>
    <item>
      <title>How to deploy a website on Netlify</title>
      <dc:creator>MD Mostafa Niloy</dc:creator>
      <pubDate>Sat, 01 Nov 2025 13:54:59 +0000</pubDate>
      <link>https://dev.to/md-mostafa-niloy/how-to-deploy-a-website-on-netlify-5fh2</link>
      <guid>https://dev.to/md-mostafa-niloy/how-to-deploy-a-website-on-netlify-5fh2</guid>
      <description>&lt;p&gt;Have you just built your first website and want to make it live on the internet?&lt;br&gt;&lt;br&gt;
Good news — you can deploy it &lt;strong&gt;for free&lt;/strong&gt; using &lt;a href="https://www.netlify.com/" rel="noopener noreferrer"&gt;Netlify&lt;/a&gt;!  &lt;/p&gt;

&lt;p&gt;In this guide, we’ll go through the &lt;strong&gt;step-by-step process&lt;/strong&gt; of deploying a static website (HTML, CSS, JS) on Netlify — no complicated server setup required.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧰 What You’ll Need
&lt;/h2&gt;

&lt;p&gt;Before we start, make sure you have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;✅ A Netlify account — &lt;a href="https://app.netlify.com/signup" rel="noopener noreferrer"&gt;Sign up here&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;✅ Your website folder (containing &lt;code&gt;index.html&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;✅ A GitHub account (optional but recommended)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚀 Option 1: Deploy via Drag and Drop
&lt;/h2&gt;

&lt;p&gt;If your site is ready locally, this is the easiest way:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;a href="https://app.netlify.com/drop" rel="noopener noreferrer"&gt;https://app.netlify.com/drop&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Drag your &lt;strong&gt;project folder&lt;/strong&gt; (with &lt;code&gt;index.html&lt;/code&gt;) into the box
&lt;/li&gt;
&lt;li&gt;Wait a few seconds — and boom! 🎉
Your site is live with a free Netlify domain (like &lt;code&gt;your-site-name.netlify.app&lt;/code&gt;)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You can even customize the domain later under &lt;strong&gt;Site Settings → Domain Management&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧑‍💻 Option 2: Deploy via GitHub
&lt;/h2&gt;

&lt;p&gt;This is a better approach if you plan to update your site often.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Push your website code to a &lt;strong&gt;GitHub repository&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Go to &lt;strong&gt;Netlify Dashboard → Add New Site → Import from Git&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Connect your &lt;strong&gt;GitHub account&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Choose the repository you want to deploy&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Deploy Site&lt;/strong&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Netlify will automatically build and host your website — and every time you push new changes to GitHub, Netlify redeploys it automatically. 🔁&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚙️ Bonus: Custom Domain Setup
&lt;/h2&gt;

&lt;p&gt;Want to use your own domain like &lt;code&gt;www.mywebsite.com&lt;/code&gt;?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to &lt;strong&gt;Site Settings → Domain Management&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Click &lt;strong&gt;Add custom domain&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Enter your domain name and follow the verification steps&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Netlify also provides &lt;strong&gt;free SSL certificates&lt;/strong&gt; via Let’s Encrypt. 🔒&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 Conclusion
&lt;/h2&gt;

&lt;p&gt;That’s it! 🎉 You just learned how to deploy your website on Netlify in a few minutes — completely free, with auto updates and HTTPS.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;💡 Pro tip: Netlify also supports React, Vue, and Next.js apps with zero configuration.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you found this guide helpful, give it a ❤️ and drop a comment below!&lt;br&gt;&lt;br&gt;
You can also follow me for more quick web development tutorials.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Happy Deploying! 🚀&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>netlify</category>
      <category>deployment</category>
    </item>
  </channel>
</rss>
