louie9479 / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

CSS #6

Open ghost opened 6 years ago

ghost commented 6 years ago

https://github.com/louie9479/prj-rev-bwfs-dasmoto/blob/master/Unit2_Dasmoto's_Arts_%26_Crafts/resources/css/style.css#L1-L6

There are a few elements you haven't applied the font-family: Helvetica; to, like p and h3.

If a style is going to be applied by default, considering using the universal selector * so that you don't have to list every single tag on the page.

For example:

* {
  font-family: Helvetica;
}
louie9479 commented 6 years ago

I was told in an earlier lesson that using "*" slows down webpage loading times. Instead, they listed all tags. Which one is correct?