Consider using the DRY method to apply css styles to the html elements once or few times, instead of having to write out font-family in your css document multiple times.
Don't repeat yourself for the following styles: text-align, font-family, background-color, and color styles
You can also stack your css selectors to group styles and apply them once 👍
for example:
Consider using the DRY method to apply css styles to the html elements once or few times, instead of having to write out
font-family
in your css document multiple times.Don't repeat yourself for the following styles:
text-align, font-family, background-color, and color styles
You can also stack your css selectors to group styles and apply them once 👍 for example: