Ashley3872 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

NOTES #7

Open tommygebru opened 5 years ago

tommygebru commented 5 years ago

NOTE: Always conduct a peer-review with your peers in Slack, this will improve performance and ability to problem solve! 💯

Your project contains little to no errors Ashley, I went ahead and reviewed your work for best practices and general areas of improvement 😃

tommygebru commented 5 years ago

You can improve the CSS codebase with non-repeating code, try applying the font-family and font-weight once or fewer times, instead of having to write this in your css document multiple times.

This is known as the DRY method (or Don't Repeat Yourself) For example


body {
font-family: Helvetica;
}
``