Lesson 5 of 8
Typography
CSS gives you full control over text. Key properties include font-family, font-size, font-weight, line-height, and text-align.
Always provide fallback fonts in case the user does not have your first choice.
CSS
p {
font-family: "Sora", Arial, sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
text-align: left;
}