• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » How To Use Adobe Fonts/TypeKit Fonts in WordPress

By Abhishek Ghosh May 23, 2023 9:22 am Updated on May 23, 2023

How To Use Adobe Fonts/TypeKit Fonts in WordPress

Advertisement

Adobe Fonts/TypeKit is available from Adobe as a part of the Adobe Creative Cloud subscription without any extra charges. Most of the professionals including bloggers and marketers have Adobe Creative Cloud subscriptions for using Adobe Photoshop. Adobe serves font from highly optimized CDN and the premium fonts are great for typography. Adobe made some changes which made it affordable, and easy to use their web fonts with WordPress.

This guide has three parts. First, an example of a WordPress theme’s CSS to use the custom font. Second, how to create a library of fonts on Adobe Creative Cloud and get the URL to incorporate. Third, how to load the font’s CSS file URL on WordPress to avoid blocking.

 

How To Write CSS to Use Adobe Fonts/TypeKit Fonts in WordPress

 

On this website, we are using a combination of Proxima Nova and Museo Slab of different font weights. These are part of our CSS to explain to you how we have used the fonts:

Advertisement

---

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
...
html {
font-size: 62.5%; /* 10px browser default */
-webkit-font-smoothing: antialiased;
}
...
 
body,input,textarea,.widgettitle,
#cancel-comment-reply-link,
.subheading,.sidebar .mycb-notifications h5,
.category h4 {
font-family: 'proxima-nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
...
h1,h2,h3,h4,h5,h6,blockquote,blockquote p,.wp-caption-text,
.font-museo,.view-more,.table .row.title,.table .row.title-empty,
.testimonials .photos .author,.testimonials .quotes ul li p,
.sidebar .enews-widget h4,.archive .showcase-navigation .label,
.themes-filter .label {
font-family: 'museo-slab', sans-serif;
}
...
/* Font Size ----------- */
 
.site-title,
.content .section .headline h2 {
font-size: 42px;
font-size: 4.2rem;
}
...

We have fine-tuned the font-weight in the next part of CSS, for example:

Vim
1
2
3
4
5
.entry-content h4 {
font-weight: 700;
margin-top: 32px;
margin-top: 3.2rem;
}

So, we require proxima-nova and museo-slab of different font weights such as 100, 300, 500, 700 etc. We made a list of our required font-weight.

 

How To Create a Library on Adobe Creative Cloud With the Required Fonts With Required Font Weight

 

Add two or three fonts of your choice by following Adobe’s guide:

Vim
1
https://helpx.adobe.com/fonts/using/add-fonts-website.html

When you search for a font on their web UI and open the font’s webpage, like this one:

Vim
1
https://fonts.adobe.com/fonts/proxima-nova

On the right hand, you’ll get an option on the right-hand side “Add to Web Project”, after clicking that link, you will get the option to create a new library for the web:

How To Use Adobe Fonts TypeKit Fonts in WordPress

Here is the full size screenshot.

After adding the required fonts to a new project, navigate to “My Fonts”, and click “Web Projects” :

Vim
1
https://fonts.adobe.com/my_fonts#web_projects-section

Click “Edit project” and select the font weight you want:

Typekit adobe font wordpress

Save it, collapse it. You’ll get the link on the project’s main page:

Vim
1
2
3
4
5
EMBED PROJECT
 
To use these fonts on a web page, copy this code into the <head> tag of your HTML.
You can embed this project on any website you manage. Learn More
<link rel="stylesheet" href="https://use.typekit.net/nulldef123xx.css">

Copy that link rel snippet.

 

How To Load Adobe Fonts/TypeKit Fonts in WordPress

 

You can always use Adobe’s WordPress plugin:

Vim
1
https://wordpress.org/plugins/typekit-fonts-for-wordpress/

But you can easily add this kind of snippet on your theme’s header:

Vim
1
2
<link rel="stylesheet" href="https://use.typekit.net/nulldef123xx.css" media="none" onload="if(media!='all')media='all'">
<noscript><link rel="stylesheet" href="https://use.typekit.net/nulldef123xx.css"></noscript>

This will be lightweight and will not block the other resources when you are using HTTP/2 on your server.

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to How To Use Adobe Fonts/TypeKit Fonts in WordPress

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Changing Data With cURL for OpenStack Swift (HP Cloud CDN)

    Changing Data With cURL For Object is Quite Easy in OpenStack Swift. Here Are Examples With HP Cloud CDN To Make it Clear. Official Examples Are Bad.

  • Fonts : Resources and Types of According to License

    Fonts are one of the key element in both traditional designing and Web Designing. We have explained the resource and types of according to License of Fonts.

  • Typekit and Web Fonts

    Typekit allows to embed fonts into online documents through CSS to render perfect looking fonts. With Retina display, quality of rendering becoming a factor.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Hybrid Multi-Cloud Environments Are Becoming UbiquitousJuly 12, 2023
  • Data Protection on the InternetJuly 12, 2023
  • Basics of BJT TransistorJuly 11, 2023
  • What is Confidential Computing?July 11, 2023
  • How a MOSFET WorksJuly 10, 2023
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy