Many web designers like to use custom & premium fonts.
Once you’ve learnt how to install fonts using best practices, all you need to do is add the fonts into your theme.
To change your sites title and description (tag line):
- Open your child theme’s style.css file
- Scroll down to the header section
- Change the first #title & #description font family
Example:
#title {
font-family: Pompiere, Times, ‘Times New Roman’, serif;
font-size: 48px;
font-variant: small-caps;
line-height: 48px;
margin: 0;
text-shadow: #666 1px 1px;
}
#description {
color: #fff;
font-family: Pompiere, Times, ‘Times New Roman’, serif;
font-size: 20px;
font-style: italic;
line-height: 24px;
text-shadow: #666 1px 1px;
}
Here you can also change the font size etc.
Note: If you’re not using a child theme, i suggest you create one for your coding edits so any changes you make to your parent theme won’t be overwritten when you update the theme.
*Did you notice where i’m using custom fonts on this site? hahaha

