Exercise 4
- View the parse results.
- Read the explanation.
Explanation:
Error
Missing hyphen.
body { backgroundcolor: #fff; color: #000; font-family: verdana, sans-serif; }So, the validator says, "body Property backgroundcolor doesn't exist : 10%
Correction
body { background-color: #fff; color: #000; font-family: verdana, sans-serif; }