Phase 1
πΉ STEP 1: Create a New Repository
- Log in to your GitHub account.
- In the top-right corner, click the β+β (plus icon) > New repository.
1οΈβ£ Repository Name: how-to-make-kebab
β Lowercase only. Hyphens instead of spaces. This name forms your URL.
2οΈβ£ Description: (Optional) Briefly describe your project.
3οΈβ£ Repository Type: Select Public.
4οΈβ£ Initialize: Tick β Add a README file.
5οΈβ£ License: Select β MIT License.
6οΈβ£ Click: β Create repository.
Phase 2
πΉ STEP 2: Upload Your HTML File
- Inside your repository, click βAdd fileβ > βUpload filesβ.
- Upload your file. It must be named:
index.html.
β GitHub is CASE-SENSITIVE. "Index.html" will NOT work.
Scroll down and click β Commit changes (leave default settings).
Phase 3
πΉ STEP 3: Enable GitHub Pages
- Click Settings (top navigation bar) > Pages (left sidebar).
- Under "Build and deployment" > "Source", select GitHub Actions.
- Find Static HTML and click β Configure.
- Commit the Workflow:
- On the right-hand side, click β Commit changes.
- A small confirmation box will appear. Click β Commit changes again.
β Do not change anything inside the workflow file.
Phase 4
πΉ STEP 4 & 5: Deployment & Live Link
Wait approximately 30β60 seconds for GitHub to build your page.
Find Your Live Website Link:
- Go back to Settings > Pages.
- At the top, you will see: "Your site is live at:"
https://yourusername.github.io/how-to-make-kebab/
Management
β
GUIDE 1: How to Rename a Repository
Renaming changes your URL. Your GitHub Pages link will also change.
πΉ STEP 1: Go to Your repositories and select the target repo.
πΉ STEP 2: Click Settings (Top navigation bar inside the repo).
πΉ STEP 3: At the top, under Repository name, delete the old name and enter the new one.
Example: best-kebab-recipe
πΉ STEP 4: Click Rename.
β Post-Rename Checklist:
- GitHub redirects old repo links, but Pages URLs change immediately.
- New Link:
https://username.github.io/best-kebab-recipe/
- Update your master index.html and any external bookmarks.
Danger Zone
β GUIDE 2: How to Delete a Repository
β WARNING: Deleting a repository is permanent and cannot be undone.
πΉ STEP 1: Enter the correct repository and click Settings.
πΉ STEP 2: Scroll to the very bottom to the Danger Zone.
πΉ STEP 3: Click β Delete this repository.
πΉ STEP 4: Type the full repository name exactly as shown to confirm (e.g., yourusername/repository-name).
πΉ STEP 5: Click β I understand the consequences, delete this repository.
π What Happens After Deleting?
- All files are permanently removed.
- GitHub Pages site stops working immediately.