aboseman1 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

Universal styles #2

Open Rodrigap opened 6 years ago

Rodrigap commented 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!

aboseman1 commented 6 years ago

Makes sense in retrospect!