Current Lesson
Course Content
Course Content

How to Add a Custom Font to Your Simplero Website or Membership Site

In this video I'll show you how to add a custom font to your website or membership site theme. 

Custom CSS Workshop I mention in the video: https://www.crowdcast.io/e/custom-css-workshop

Webfont Generator Tools:

Code Clips from Video: 

First bring in the font...

@font-face {
font-family: 'James fajardo';
src: url('https://us.simplerousercontent.net/uploads/asset/file/3553187/James-Fajardo.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

Then assign that font-family to different elements...

body, h1, h2, h3, h4, p, a, .btn {
font-family: 'James fajardo', sans-serif;
}


Last updated 6 Sep 2022.