Nice work on the DRY method and applying css styles to the html elements once or few times, instead of having to write out font-family in your css document multiple times.
For example:
body {font-family: Helvetica;}
You can also stack your css selectors to group styles and apply them once 👍
For example:
Nice work on the DRY method and applying css styles to the html elements once or few times, instead of having to write out
font-family
in your css document multiple times. For example:body {font-family: Helvetica;}
You can also stack your css selectors to group styles and apply them once 👍 For example: