Hello. I could really use this awesome communities help. I am trying to add a custom font into an email application called Stripo. They said, for the font, must delivered in the HTTPS protocol, using the CSS format. How do I do this for my WordPress site? I think I understand the basics, just don’t know how to get a link for my css file.
Would love any help!
You need a separate CSS file that contains the `@font-family` declaration. It might be easier to create that file manually
@font-face {
font-family: “XXXXXXX”;
src: url(‘your_font_file_url.woff2’) format(‘woff2’),
url(‘your_font_file_url.woff’) format(‘woff’);
}
Save that into a .css file and put the file anywhere on your server, then enter the URL for that file into Stripo.