<?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>Forem: Ayush Singh</title>
    <description>The latest articles on Forem by Ayush Singh (@codercordite).</description>
    <link>https://forem.com/codercordite</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%2F3071881%2F363865ba-37a1-4bcb-8703-4840a34bc364.gif</url>
      <title>Forem: Ayush Singh</title>
      <link>https://forem.com/codercordite</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/codercordite"/>
    <language>en</language>
    <item>
      <title>🌟 How to Create a Beautiful GitHub Profile README (With Code Example!)</title>
      <dc:creator>Ayush Singh</dc:creator>
      <pubDate>Mon, 21 Apr 2025 15:44:29 +0000</pubDate>
      <link>https://forem.com/codercordite/how-to-create-a-beautiful-github-profile-readme-with-code-example-b1o</link>
      <guid>https://forem.com/codercordite/how-to-create-a-beautiful-github-profile-readme-with-code-example-b1o</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2ytc8xphpo1d0m9jkdkt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2ytc8xphpo1d0m9jkdkt.png" alt="Image description" width="800" height="800"&gt;&lt;/a&gt;A well-crafted GitHub profile README is your digital business card to the developer world. Whether you're a student, job seeker, or open-source contributor, a neat and impressive README can make your profile stand out. ✨&lt;/p&gt;

&lt;p&gt;In this post, I’ll show you how to create a visually appealing GitHub profile README using Markdown, badges, dynamic stats, and creative elements—along with a live example from my own GitHub profile!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;🛠️ Step 1&lt;/strong&gt;: Create Your Special Repository&lt;br&gt;
Go to GitHub and create a new repository.&lt;/p&gt;

&lt;p&gt;Name it exactly the same as your GitHub username (e.g., if your username is lassiecoder, name it lassiecoder).&lt;/p&gt;

&lt;p&gt;Initialize it with a README.md.&lt;/p&gt;

&lt;p&gt;✅ GitHub automatically recognizes this and displays it on your profile page.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✨ Step 2&lt;/strong&gt;: Add Basic Introduction&lt;br&gt;
Start with a friendly hello and a short intro about who you are:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Hello World! 👋

I've been a **Computer Science student** and **Data Analyst in the Making**, with a strong passion for building impactful solutions for **Web** platforms.

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;👀 Step 3&lt;/strong&gt;: Add Profile Visit Counter&lt;br&gt;
Using Komarev's counter, you can show how many people have viewed your profile:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;p align="top"&amp;gt;
  &amp;lt;img src="https://komarev.com/ghpvc/?username=lassiecoder&amp;amp;abbreviated=true&amp;amp;label=Profile%20views&amp;amp;color=blueviolet&amp;amp;style=for-the-badge" alt="lassiecoder" /&amp;gt;
&amp;lt;/p&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;📷 Step 4&lt;/strong&gt;: Add a Header Image&lt;br&gt;
Use a picture that reflects your personality or theme:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;picture&amp;gt;
  &amp;lt;img src="https://github.com/your-username/your-repo/assets/your-image-id" align="right" width="35%" alt="Header Image"&amp;gt;
&amp;lt;/picture&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🌐 Step 5&lt;/strong&gt;: Add Social &amp;amp; Portfolio Badges&lt;br&gt;
Let people find your work, social handles, and blog easily:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Portfolio](https://img.shields.io/badge/-Portfolio-943be7?style=for-the-badge&amp;amp;logo=link&amp;amp;logoColor=white)](https://your-portfolio-link)
[![LinkedIn](https://img.shields.io/badge/-LinkedIn-0077B5?style=for-the-badge&amp;amp;logo=linkedin&amp;amp;logoColor=white)](https://linkedin.com/in/your-profile)
[![Blogger](https://img.shields.io/badge/Blogger-FF5722?style=for-the-badge&amp;amp;logo=blogger&amp;amp;logoColor=white)](https://your-blog)

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔥 Step 6&lt;/strong&gt;: Highlight Your Tech Stack&lt;br&gt;
This is your chance to show your skills with eye-catching tech badges:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Next.js](https://img.shields.io/badge/Next.js-000000?style=for-the-badge&amp;amp;logo=next.js&amp;amp;logoColor=white)](https://nextjs.org/)
[![Tailwind CSS](https://img.shields.io/badge/Tailwind_CSS-06B6D4?style=for-the-badge&amp;amp;logo=tailwind-css&amp;amp;logoColor=white)](https://tailwindcss.com)
[![MySQL](https://img.shields.io/badge/MySQL-4479A1?style=for-the-badge&amp;amp;logo=mysql&amp;amp;logoColor=white)](https://mysql.com)

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;📊 Step 7&lt;/strong&gt;: Show Your GitHub Stats&lt;br&gt;
Use dynamic GitHub stats using GitHub Readme Stats:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img src="https://github-readme-stats.vercel.app/api?username=lassiecoder&amp;amp;show_icons=true&amp;amp;count_private=true&amp;amp;theme=jolly&amp;amp;hide=issues&amp;amp;hide_border=true" /&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🔁 Step 8&lt;/strong&gt;: GitHub Streaks and Languages Used&lt;br&gt;
Highlight consistency and preferred languages:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img src="https://streak-stats.demolab.com/?user=lassiecoder&amp;amp;theme=dark&amp;amp;mode=weekly" /&amp;gt;
&amp;lt;img src="https://github-readme-stats.vercel.app/api/top-langs/?username=lassiecoder&amp;amp;layout=compact&amp;amp;theme=jolly" /&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🧁 Step 9&lt;/strong&gt;: Add Fun Animations or GIFs&lt;br&gt;
Spice it up with fun gifs or custom dividers:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;img src="https://media.giphy.com/media/L8A2CLpJJW5d3NR5Tt/giphy.gif" width="22%" /&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;🤝 Step 10&lt;/strong&gt;: Call to Action&lt;br&gt;
Invite people to connect, collaborate, or just say hi!&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#### Let's connect and collaborate!  
&amp;lt;img src="https://cultofthepartyparrot.com/parrots/hd/laptop_parrot.gif" width="35" height="35"/&amp;gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;🎉 Final Result?&lt;br&gt;
A profile that not only showcases your skills but also your personality. Here’s my live profile if you want to take inspiration.&lt;/p&gt;

&lt;p&gt;🧩 Bonus Tips&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Keep it updated regularly with your latest projects or blog posts.&lt;/li&gt;
&lt;li&gt;Stick to a consistent color theme for visual harmony.&lt;/li&gt;
&lt;li&gt;Use tools like Markdown Editor to preview your design.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;💬 Wrapping Up&lt;br&gt;
Your GitHub README is more than just a bio — it’s your digital story. By combining tech, creativity, and personality, you can leave a lasting impression on anyone who visits your profile.&lt;/p&gt;

&lt;p&gt;So go ahead — code it, style it, and make it uniquely you!&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>github</category>
      <category>design</category>
    </item>
  </channel>
</rss>
