-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.txt
More file actions
20 lines (17 loc) · 755 Bytes
/
README.txt
File metadata and controls
20 lines (17 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Bowiri Traditional Council — Royal multi-page starter
Folder structure:
- index.html
- about.html
- projects.html
- leadership.html
- contact.html
- css/style.css
- js/main.js
- images/ (replace placeholders)
Deployment:
1. Create a GitHub repository named 'bowiritraditionalcouncil'
2. Upload all files (root level). Ensure index.html is in the root.
3. Enable GitHub Pages in repo Settings -> Pages -> Branch: main (or master) -> / (root)
4. Visit: https://<your-username>.github.io/bowiritraditionalcouncil/
One-command deploy (from project folder):
git init && git branch -M main && git add . && git commit -m "Initial Bowiri site" && git remote add origin https://github.com/YOUR-USERNAME/bowiritraditionalcouncil.git && git push -u origin main