GitHub is where the world stores code. Here is how to push your project:
Go to github.com → New repository → Name it → Create
cd my-project git init git add . git commit -m "First commit" git remote add origin https://github.com/YOU/repo.git git push -u origin main
git add . git commit -m "Describe your change" git push
Settings → Pages → Deploy from branch → Your site is live at username.github.io/repo 🚀