Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Review with students view #2

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions projects/01_ecommerce/01_milestone/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,27 @@ and an "Add to Cart" button.

### Requirements:

1. HTML Structure:
1. Clone this project and create your PR
<!-- Note 1 - I believe it would be good if here it is clearly informed that they should create a branch to this project in gitHub with their names, and make their exercise there -->
- Clone this project in your computer ( git clone projectlink )
- Create your branch with your name ( got checkout -b yourname )
- Make a first change in the project and save it, to be able to create your Pull Request (PR):
- Make a change
- Add your change ( git add . )
- Commit your change ( git commit -m "explain your change" )
- Push your first change ( git push -u origin yourBranchName_thatIsYourName )
- Go to the Repo in gitHub link xxx and create your PR
- From then on when you decide to push your changes you can only type git push.

2. HTML Structure:
- Create a new HTML file (e.g., `index.html`).
- The page should have a <header> with the company logo and a navigation bar
with links to "Home", "Shop", "Contact".
- Below the header, add a main section (<main>) to display the products
- Add a footer with basic information like contact details and social media
links.

2. Products List Section:
3. Products List Section:

- Inside the <main> section, create a container for the products list.
- Include an image of the product.
Expand Down