<?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: Abhijit Lalasaheb Zende</title>
    <description>The latest articles on DEV Community by Abhijit Lalasaheb Zende (@curious-abhi).</description>
    <link>https://dev.to/curious-abhi</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%2F1320077%2F1d5a5167-cc39-4b73-8845-3a276c33ea87.png</url>
      <title>DEV Community: Abhijit Lalasaheb Zende</title>
      <link>https://dev.to/curious-abhi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/curious-abhi"/>
    <language>en</language>
    <item>
      <title>Don’t Be the Party Loner: Build and Host Your Portfolio Website for Free in 2024🎉</title>
      <dc:creator>Abhijit Lalasaheb Zende</dc:creator>
      <pubDate>Mon, 29 Jul 2024 23:29:51 +0000</pubDate>
      <link>https://dev.to/curious-abhi/dont-be-the-party-loner-build-and-host-your-portfolio-website-for-free-in-2024-3g7h</link>
      <guid>https://dev.to/curious-abhi/dont-be-the-party-loner-build-and-host-your-portfolio-website-for-free-in-2024-3g7h</guid>
      <description>&lt;p&gt;In 2024, not having a portfolio website is like being the only person at a party without a smartphone — awkward and out of place! 😅 But don’t worry, creating a professional portfolio website is easier than you think. Plus, hosting on Vercel is free, and I’ve got all the code ready for you. You can check out my portfolio at &lt;a href="https://abhijit-zende.vercel.app/" rel="noopener noreferrer"&gt;My portfolio website&lt;/a&gt; to see what you’ll be building! So let’s get started!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisites 📋&lt;/strong&gt;&lt;br&gt;
Before diving into the fun stuff, let’s get the basics out of the way:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Install VSCode: This will be your go-to code editor.&lt;/li&gt;
&lt;li&gt;Sign Up on GitHub: Your code’s new home.&lt;/li&gt;
&lt;li&gt;Install Git: For version control.&lt;/li&gt;
&lt;li&gt;Basic HTML, and CSS Knowledge: You're good to go if you know how to create a basic webpage! 👍&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fna07i34721ob15a5d447.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fna07i34721ob15a5d447.png" alt="Image description" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Actual Implementation 💻&lt;/strong&gt;&lt;br&gt;
Let’s get our hands dirty with some code!&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create Profile Images 🖼️:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Choose your best photos (because first impressions matter!).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Visit &lt;a href="https://pfpmaker.com/" rel="noopener noreferrer"&gt;pfp maker&lt;/a&gt;, upload your photos, and customize them. Download your stylish new profile pics.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt; Set Up GitHub Repository 🛠️:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;create a new repository on GitHub.&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Clone Your GitHub Repository Locally 🖥️:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Open your command prompt and run:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/YourUsername/YourRepoName.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Replace &lt;code&gt;YourUsername&lt;/code&gt; and &lt;code&gt;YourRepoName&lt;/code&gt; with your GitHub username and repository name.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Clone My Repository:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;In a different folder, clone my repository:
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git clone https://github.com/Abhiz2411/abhijit-zende-portfolio.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This is where all the magic happens! 🎩✨&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Copy Files 📁:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Copy all the files (except the .git folder) from my repository to your repository.&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Customize Your Website 🎨:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Open the project in VSCode.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Replace my images with yours and update the content with your information. It’s like putting your face on my body — creepy but effective!&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Track and Commit Your Changes 🔍:
Run these commands in the VSCode terminal:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git add .
git commit -m "Initial commit: Portfolio website"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Push Your Changes to GitHub 🚀:
Push the code to your GitHub repository
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;git push origin main
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Deploy on Vercel 🌐:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Sign up on &lt;a href="https://vercel.com/" rel="noopener noreferrer"&gt;Vercel&lt;/a&gt; using GitHub.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create a new project and link it to your GitHub repository. Follow the simple steps, and voila! Your minimalistic portfolio website is live and free!&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;FAQ Help 💡&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Cloning a GitHub Repo: &lt;a href="https://joshuawilfred.medium.com/github-best-practices-e384608e0f71" rel="noopener noreferrer"&gt;Guide here&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Publishing Your First Project on GitHub: &lt;a href="https://medium.com/hackernoon/step-by-step-guide-to-push-your-first-project-on-github-fec1dce574f" rel="noopener noreferrer"&gt;Guide here&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Deploying Your Website on Vercel: &lt;a href="https://medium.com/@v1vek/a-step-by-step-guide-to-deploying-your-website-on-vercel-59c08437049b#:~:text=Before%20you%20can%20deploy%20your,directed%20to%20the%20Vercel%20dashboard.&amp;amp;text=After%20logging%20into%20your%20Vercel,the%20%E2%80%9CImport%20Project%E2%80%9D%20button" rel="noopener noreferrer"&gt;Detailed tutorial&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Features of My Website 🌟&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Minimalistic Design: Clean and simple, just like your morning coffee. ☕&lt;/li&gt;
&lt;li&gt;Consistent Styling: Because nobody likes a messy wardrobe. 👔👗&lt;/li&gt;
&lt;li&gt;Only HTML, CSS, and JS: No frameworks, no libraries — just pure code. 💻&lt;/li&gt;
&lt;li&gt;Beginner-Friendly: Perfect for those just starting. 🆕&lt;/li&gt;
&lt;li&gt;Smooth Animations: Like butter on toast. 🧈&lt;/li&gt;
&lt;li&gt;Great Profile Pics: Thanks to PFP Maker! 📸&lt;/li&gt;
&lt;li&gt;Fast Loading: No one likes waiting in the digital world. ⏩&lt;/li&gt;
&lt;li&gt;SEO Friendly: Helps you get noticed by search engines. 🌐&lt;/li&gt;
&lt;li&gt;Easily Customizable: Make it yours! 🛠️&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Extra Feature: Dark Mode/Light Mode Switch 🌗&lt;/strong&gt;&lt;br&gt;
Because who doesn’t love a good theme toggle?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Credits 🙏&lt;/strong&gt;&lt;br&gt;
Theme Inspiration: Check out &lt;a href="https://www.youtube.com/watch?v=ldwlOzRvYOU" rel="noopener noreferrer"&gt;Tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;And there you have it! Your very own portfolio website. Remember, having a portfolio is like having a superpower in the tech world. It showcases your skills and projects, helping you stand out to potential employers or clients. So don’t be the party loner — join the crowd and build your online presence today!&lt;/p&gt;

&lt;p&gt;Check out my portfolio at &lt;a href="https://abhijit-zende.vercel.app/" rel="noopener noreferrer"&gt;My portfolio website link&lt;/a&gt;. If you have any questions or need further assistance, feel free to contact me at &lt;a href="mailto:abhijitzende75@gmail.com"&gt;abhijitzende75@gmail.com&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Happy coding! 🎉&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>html</category>
      <category>css</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
