How to Use Downloaded Fonts in WordPress without a Plugin

Last Updated on September 22, 2022 by 13 Comments

How to Use Downloaded Fonts in WordPress without a Plugin
Blog / Resources / How to Use Downloaded Fonts in WordPress without a Plugin

Google Fonts is an amazing resource. Before it was so widespread, making websites that used unique fonts was a real pain. Now, though, with a few clicks and one snippet of code, your website moves from being Helvetic-eh to Helvetic-awesome. But what if the font you love isn’t a part of the Google Fonts family? You need to know how to use downloaded fonts because you’ve discovered a fantastic hipster font that speaks to your beard’s soul.

Using a downloaded font on your website is not quite as simple as clicky-clicky-paste-paste. It’s not a hard process, mind you, and I am gonna walk you through it so that you never, ever, ever have a Helvetic-eh website again.

Now, I want to point out that you can do this via a plugin. There are a handful available in the repo. But why would we want to do that? I am the kind of guy who prefers to avoid using a plugin when a few lines of code will do the same thing. Excess plugins cause tons of bloat, unnecessary HTTP requests, and slow down your site.

So we’re going to import these fonts by hand–like it’s the late ’90s again. Awww, yeah.

Choosing and Downloading a Font

I’m a big fan of font roundups. Elegant Themes has a ton you can scan through to see what you like. So hit some of these and see what you like.

For me, I am going with the Aventura font from the Hipster round-up.

Free and Paid Hipster Fonts

Your first step is to find the download link for the font and save the file to your computer. It will likely be a .zip file containing various file formats. The most common ones you’ll find is .ttf (TrueType Font) or .otf (OpenType Font).

Making a Webfont (Kinda Optional, but Not Really)

FontSquirrel has a great tool you can use to make sure no one and no browser is left incompatible with your site’s splendor. Since most fonts you download will only be available in a single format, the FontSquirrel tool makes it so that you’re not limited by what the font author distributed. As long as you’ve got rights to use the font, you can make sure it works with your product/site.

how to use downloaded fonts

Just upload your recently downloaded font and pick your options. Personally, I use the Expert options, just to get all the font formats I can. The others work, but you don’t get as many file types, which is kind of the point of the whole thing.

FontSquirrel is also awesome that it provides you with the required CSS to import them to your site. How’s that for user-friendly? You’ll just copy and paste it in (which we deal with below).

how to use downloaded fonts

Uploading Your Font to WordPress

how to use downloaded fonts

With that done, you’ll need to upload the font to your hosting provider. I always do this via FTP (I use FileZilla, but you can use whatever client you want).

If you don’t know your host’s FTP information, head into your cPanel and look under Files -> FTP Accounts.

how to use downloaded fonts

You will see every FTP account for the host there, and you should also see a Configure FTP Client link beside each one.

how to use downloaded fonts

When you go in there, cPanel gives you server information or a FileZilla (and others) file you can import to get your credentials set. I go for manual, personally, but you do what you like. Even if you use the file, you’ll need the password to login, so both methods are safe and secure.

how to use downloaded fonts

Now that you’re logged into your host via FTP, navigate to your /wp-content folder for your site. Because this is content for your WordPress site, why wouldn’t you put it there? Feel free to put it wherever, even in /wp-content/uploads. You do you.

how to use downloaded fonts

FTP is super easy to upload your file. Just find the font file you downloaded and drag it into the bottom-right pane in FileZilla. That will start the upload. It won’t take more than a second or so for you to see it in the directory.

how to use downloaded fonts

If you used the FontSquirrel tool we discussed above, you will do this for all of the font files you downloaded from them as well. Just drag and drop them into wherever you want to store them.

Using Your Font with CSS

Your font is now uploaded and safely snuggled into its warm, comfy wp-content blanket. It’s time to add the needed CSS import to your theme.

Head to your child theme’s directory (you are using a child theme, right?) in your FTP client and find the style.css file, right-click it, and select View/Edit to bring it up in your default text editor.

If you don’t have a child theme, use the Orbisius Child Theme Creator to do it mega-ultra quick. You can delete the plugin afterward. I love this thing.

how to use downloaded fonts

@font-face

The code we use comes directly from FontSquirrel (you can write your own or copy/paste the example below), and all I changed was the URL upload path to include /wp-content. Everything else is what the webfont generator provided.

All this @font-face script does is tell your website’s stylesheets, β€œhey, dude, I’m putting this new font over here if you want to use it sometime.” You know, kind of like you do when you bring cupcakes home and tell the people you live with.

Without @font-face, if you try to call font-family: β€˜aventurabold’; by CSS, your site won’t be able to find it because it’s never been told where you’re keeping it.

@font-face {
    font-family: 'aventurabold';
    src: url('/wp-content/aventura-bold-webfont.eot');
    src: url('/wp-content/aventura-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/wp-content/aventura-bold-webfont.woff2') format('woff2'),
         url('/wp-content/aventura-bold-webfont.woff') format('woff'),
         url('/wp-content/aventura-bold-webfont.ttf') format('truetype'),
         url('/wp-content/aventura-bold-webfont.svg#aventurabold') format('svg');
    font-weight: normal;
    font-style: normal;

}

Save the file, and since you opened it to edit through the FileZilla, you will get a dialogue asking if you want to replace the one on the server. Your answer is, obviously, yes.

Now all you have to do is go into your custom.css (or if you use Divi, Divi -> Theme Options -> Custom CSS in your WP dashboard’s navigation pane.)

You just add the CSS styling in like you would for any other font. I simply replaced the β€˜Roboto’ and β€˜Exo’ Google Fonts I was using with β€˜aventurabold’, and things were good to go (thanks to the @font-face import above).


body {
    font-family: "aventurabold", arial, sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
    color:  #fff;
    font-family: 'aventurabold', sans-serif;
    font-weight: 700;
   text-transform: uppercase;
}

The Fruits of our Labors

Here’s what it looked like before:

how to use downloaded fonts

And here’s what happened after I added Aventura to the CSS:

how to use downloaded fonts

Hooray! It works! Good job! Go us!

Lookin’ Good, Friendo

Like Captain Malcolm Reynolds once famously said, β€œWe’ve done the impossible, and that makes us mighty.” Well, okay, so uploading a font and importing it via CSS may not quite amount to having done the impossible, but you’ve certainly done something many WordPress users wouldn’t dare think of doing: adding core functionality without a plugin.

And that, my friends, does indeed make you mighty.

So what’s your favorite font to use on the web that’s not a Google Font? Tell me in teh comments!

Article thumbnail image by 32 Pixels / shutterstock.com

Divi

Want To Build Better WordPress Websites? Start Here! πŸ‘‡

Take the first step towards a better website.

Get Started
Divi
Premade Layouts

Check Out These Related Posts

WordPress vs Medium (2024) β€” Where Should You Blog?

WordPress vs Medium (2024) β€” Where Should You Blog?

Updated on February 14, 2024 in Resources

If there is one question that goes back to the very beginning of blogging, it’s “what blogging platform should I use?” Everyone asks this question (to Google, most likely), and everyone gets bombarded with a thousand different answers. That’s primarily because there are so...

View Full Post
9 Non-Profit Child Themes for Divi

9 Non-Profit Child Themes for Divi

Updated on January 23, 2023 in Resources

There are lots of nonprofit organizations across the globe. Just about every one of them needs a well-designed website to tell their story and receive donations to help their causes. Divi is an excellent theme for nonprofits such as charities. Fortunately, you don’t have to start from scratch for...

View Full Post

13 Comments

  1. Great article , am using css in this method, very help full

  2. It is ok to do this with css but how can we add these custom fonts to the Divi font selector dropdown?

    • That’s what I’m trying to figure out too. I did all the steps, but when I went into the Divi -> Theme Options -> Custom CSS, I added the code but there was nothing to replace as in the example.

      • Did you find something ?

  3. All links go to 404 page.

  4. Such a nice information.
    Thanks for sharing…

  5. Somehow I just screwed up my site when I entered in the css code. Now I’m totally lost. πŸ™

  6. This is what I would like to do : load my font from my server. Thanks. But how to stop divi loading so much JS and Google fonts links ?

  7. All of the font links return “This Page Does Not Exist”.

  8. Many of the links in this article lead to “That page does not exist.” I’d love to see the pages these links go to. Can this be fixed?

    Thanks for a great article – a keeper!

  9. Great post. Much prefer using CSS. Thank you!

Leave A Reply

Comments are reviewed and must adhere to our comments policy.

Get Started With Divi