In this exercise, you'll fix some poorly-written HTML and CSS according to best practices.
- Begin by
forkingthe 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.jpgandkatherine-johnson.jpgshould be in animgfolder. You'll need to change your HTML<img>tags to point to their new location. - Does the
index.htmlhave 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
alttext for accessibility. - Lastly, don't forget your version control with Git! You should
commitat least three times, andpushto your forked repo.
