A better way to go about adding font family Helvetica along with a backup font is to grab multiple selectors and bundle them with the font family property. This eliminates having to input the same property across multiple selectors. Ex:
h1, h2, h3, p {
font-family: "Helvetica", sans-serif;
}
A better way to go about adding font family Helvetica along with a backup font is to grab multiple selectors and bundle them with the font family property. This eliminates having to input the same property across multiple selectors. Ex: