In this exercise, you'll fix some poorly-written HTML and CSS according to best practices.
- Begin by
forking
the repo at https://github.com/BexB1/cyf-best-practices-exercise - From your forked version of the repo, copy the SSH and clone the repo onto your computer through the terminal with
git clone [your SSH here]
.
Tips:
- First things first, the folder structure needs some tidying.
ada-lovelace.jpg
,grace-hopper.jpg
andkatherine-johnson.jpg
should be in animg
folder. You'll need to change your HTML<img>
tags to point to their new location. - Does the
index.html
have everything it needs at the top? - All of the code need to be indented correctly.
- Your CSS class names will need to be semantic.
- Make sure there's no unnecessary white space in either your HTML or CSS.
- Your images will need
alt
text for accessibility. - Lastly, don't forget your version control with Git! You should
commit
at least three times, andpush
to your forked repo.