MrSwankyMcGee / 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 Joshua, 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 once or fewer times, instead of having to write out font-familyin your css document multiple times. This is known as the DRY method (or Don't Repeat Yourself)

body {
font-family: Helvetica;
}