In this challenge you are to build a website of 3 pages for a carrot store.
- The homepage contains mainly the company name and motto.
- The user can navigate from there to the products view, showing all the carrots.
- The product details is accessible through clicking the "more" button on a list element.
Try to implement it both ways:
- Using only CSS and HTML written by you (and the provided resources of course).
- Writing a minimal amount of code and using an external library.
The two should be saved in different folders, being two separate sites.
You are allowed to use any technique discussed so far as long as you get the job done.
note: You do not have to create a page for every carrot. One is enough.
BONUS:
Make the site responsive.
The color palette is located at mocks/colors.PNG
.
Mocks for the pages can be found in mocks/web/
.
Mocks for mobile can be found in mocks/mobile/
.
Images are located in mocks/img/
.
The fonts used are Segoe UI
for most of the page, and Pacifico
, downloadable from Google fonts
Press the 'Fork' button in the upper right corner, a copy of the repo will then be made and you will be redirected to it. You can verify that by looking in the upper left corner, you should see something like "YOUR_ACCOUNT_NAME/carrot-store-challenge".
You can press the green "Clone or download" button and copy the link, then use 'git clone LINK_HERE' command to get a local copy.
It's good practice to not work directly on the master branch, you can make a branch with your own name and work there or even make different branches for every feature you make if you feel brave.
You can see the local/remote branches that exists typing "git branch -a" in your terminal/bash or from the "Branch :" dropdown menu on the project's github page.
It's encouraged and good practice to have small commits (atomics), so it's easier to track/revert changes in the code when necessary.
When you are ready you can press the "New pull request" on your repo page and from there select:
- Base repository - "iQ-University/carrot-store-challenge"
- Base - The branch with your name
- Head repository - "YOUR_ACCOUNT_NAME/carrot-store-challenge"
- Compare - The branch you worked on