What do you add to a typeface when it consists of more than one word?
You add double quotes around the font, like so:
font-family: “Times New Roman”;
What can you do to ensure that the font you choose will be visible to all users?
You can use a link to a google font using the link element and the href attribute with the link, like so:
What are the three units of measurment for font sizes?
Percentages
Pixels
Ems
How would you make certain text bold and how would you make text to appear in italic?
font-weight: bold;
font-style: italic;
How would you change certain text to be uppercase, which results in less typing perhaps and cleaner looking code.
text-transform: uppercase;