What you have here will work, but as projects get bigger you don't want to have to list every element to give the font to. Instead we can use inheritance to set the default page font.
html { font-family: Helvetica; }
Now all elements will default to Helvetica.
What you have here will work, but as projects get bigger you don't want to have to list every element to give the font to. Instead we can use inheritance to set the default page font. html { font-family: Helvetica; } Now all elements will default to Helvetica.
https://github.com/rpartap/prj-rev-bwfs-dasmoto/blob/master/Dasmoto's%20Arts/Resources/css/style.css#L12