GOAL: Create a webpage that showcases you and your partners favorite cuisines, dishes, and recipes.
Create an index.html file that contains:
- A list of your favorite cuisines and pictures
- A list of your favorite dishes with pictures
- A list of recipes with links to sites that provide the recipe
- Wrap each of the above lists in
divelements with class and id attributes.
Additionally, you will style this page to ensure that it entices users to read and utilize your webpage. Your style.css should incorporate the following design elements:
- Create a
style.cssfile - Link the file to
index.htmlusing a<link>tag. - Create CSS rulesets that incorporate the following CSS properties to style the elements on the page. Make sure you use element, class, and id selectors:
colorbackground-colorfontfont-sizetext-decorationtext-aligntext-shadowbox-shadow
- Additionally, style your images using the following properties:
widthborder-radiusopacity
Done Early? Try the following stretch exercises π
- Align your images in the center of the page
- Give your images a border
- Give your page a background image
- Create a navigation bar at the top of your page. Style this navigation bar using CSS.
- Check out pseudo-elements like
::beforeand::afterto try to animate your links.

