HTML and CSS Source Code for Food Ingredients Delivery and Cooking Tutorial
Website: https://zainularifin1.github.io/Deliverbee/
1. Main Page
2. Account Creation page
3. List of Menu page and order page
4. Contact person page
5. Our specialty product page (optional)
6. Others
https://www.w3schools.com/w3css/w3css_templates.asp
<> = change code accordingly
Clone an online repo to local repo
git clone <repo_name>
Naviagate between branches
git checkout <branch_name>
Pull new changes from online to local repo
git pull
Push changes from local to online repo
git add .
git commit -m "custom message"
git push
Create new branch and fill it with code from master repo
git branch <new_branch_name>
git checkout <new_branch_name>
git add .
git commit -m "custom message"
git checkout master
git push origin <new_branch_name>