Reply To: Change font of a single word

Home Forums Support Change font of a single word Reply To: Change font of a single word

Home Forums Support Change font of a single word Reply To: Change font of a single word

#232095
Tom
Lead Developer
Lead Developer

I wouldn’t suggest this unless the other font is a system font.

Including too many Google Fonts will really hurt the performance of your site.

You’re right though, you would use a span.

I'm the regular font, and <span class="new-font">I'm the new font</span>.

.new-font {
    font-family: Arial, sans-serif;
}