When styling your text, you can use properties such as font-family and font-weight or you can use the shorthand property font.
When you use the shorthand property, you should remember that it requires both the size and the family - in that order. (It does not require the weight.) For example:
p { font: 100% Arial; }

