Suggest an editImprove this articleRefine the answer for “How do you specify a font for text?”. Your changes go to moderation before they’re published.Approval requiredContentWhat you’re changing🇺🇸EN🇺🇦UAPreviewTitle (EN)Short answer (EN)**A font for text** is specified with the `font-family` property (for example, `font-family: "Arial", sans-serif;`), and you can list several font names separated by commas. **Key point:** if the first font is unavailable, the browser automatically uses the next one in the list.Shown above the full answer for quick recall.Answer (EN)ImageWith the `font-family` property: ```css selector { font-family: "Arial", sans-serif; } ``` You can specify one or several font names. If the first one is unavailable, the next one is used.For the reviewerNote to the moderator (optional)Visible only to the moderator. Helps review go faster.