<aside> 💡 Notion Tip: Use this template to codify the process around a feature launch.

</aside>

Step by Step Guide -

  1. Create a GitHub account: If you don't already have one, create a GitHub account at github.com.
  2. Create a new repository: Once you're logged in to GitHub, create a new repository by clicking on the "+" icon in the top right corner of the screen and selecting "New repository".
  3. Name your repository: Name your repository as "username.github.io" where "username" is your GitHub username. Make sure to select the option "Initialize this repository with a README" while creating it.
  4. Create an index.html file: Create a new file in your repository called "index.html" and paste in the following code:

<!DOCTYPE html>
<html>
<head>
	<title>Himanshu - Portfolio</title>
</head>
<body>
	<h1>Welcome to my portfolio</h1>
	<p>Hi, my name is Himanshu Ramchandani and I am a Data & Engineering Consultant.</p>
</body>
</html>
  1. Customize the code: Customize the code by replacing "[Your Name]" and "[Your Profession]" with your actual name and profession. You can also add additional content to showcase your skills, projects, and experience.
  2. Commit your changes: Once you've customized the code, click on the "Commit changes" button at the bottom of the page to save your changes.
  3. Preview your site: Navigate to your new site by going to "https://username.github.io/" (replace "username" with your GitHub username) in your web browser to see your new landing page live on the web.
  4. Add more pages (optional): You can add additional pages to your site by creating new HTML files and linking them together using hyperlinks.

That's it! With these steps, you have built a personal landing page for your portfolio for free on GitHub. You can continue to customize and improve your site as you gain more experience and develop new projects.