Open Rodrigap opened 6 years ago
Instead of writing "font-family: Helvetica" in 5 different places in your CSS, consider using universal styles! You can remove those 5 lines and just add this at the top of your file to set the default font for the whole HTML body to helvetica:
body { font-family: Helvetica; }
This helps eliminate a lot of code repetition!
Makes sense in retrospect!
Instead of writing "font-family: Helvetica" in 5 different places in your CSS, consider using universal styles! You can remove those 5 lines and just add this at the top of your file to set the default font for the whole HTML body to helvetica:
This helps eliminate a lot of code repetition!