Repository files navigation Our First Bootstrap Project
To gain familiarity with a bootstrap project
Bootstrap is a framework containing built-in CSS and JavaScript tools for designing web components.
To create a website that mocks the user-experience of a very simple online store.
must include custom-styling.
must include at least four pages.
an about page
a shop page
a purchase-item page
a home page
Git Collaboration Strategy
Part 1 - Assigning an origin-owner
Assign one person to fork the original repository. This will be the origin-owner .
The origin-owner should add each of the group-members as a contributor to the project.
Each group-member should then clone the project from their origin-owner
Part 2 - Pushing your first change
As each of you complete a different part of the application, ensure that you are pushing your changes.
changes can be pushed by executing the following commands.
git add .
git commit -m 'update message'
git push -u origin master
Part 3 - Pulling your first change
You can keep in sync by executing the following commands
git pull origin master
git add .
git commit -m 'merged with master'
git push -u origin master
Part 4 - Publish the project online
Navigate to the settings tab of the repository.
Scroll down until you see GitHub Pages section
Select Use the master branch for Github Pages
Scroll down until you see Your site is published at ...
Copy the link associated with your site.
Navigate to your repository.
Edit the description of your respotory by adding a link to the site.
You can’t perform that action at this time.