How to change the font in the middle of a sentence

Here is an easy way to change the font of words in the middle of a sentence.

  1. Create a class and add in the font you would like to use. You can use the plugin ‘Use Any Font‘ to upload the font of your choice if it is not a system or Google font.
  2. Go into your text editor and add the span below around your words.
  3. It’s as easy as that 😉

.cursive {
	font-family: 'Baskervville', serif;
	font-style: italic;
}

<span class="cursive" style="font-size: 20px;">The apartments range</span>
Create your custom class in the Additional CSS section under Customize.
Add the span to the text you wish to change.