Hi, @Juston Dixon ,
I've tested 'Franklin Gothic Medium Cond' in both Edge, IE, Chrome and Firefox. It turns out that this font works well in IE and Firefox, but does not render in Edge and Chrome (the default font renders instead). It looks like Chromium-based browsers haven't supported this font yet, but they do support 'Franklin Gothic Medium'.
However, here's a workaround for you by making it a web font (if you can edit CSS):
Add a rule to your css file. For example:
<style>
@font-face {
font-family: 'franklin_gothic_medium_cond';
/* Enter your font file name as the url */
src: url('Franklin Gothic Medium Cond Regular.ttf');
font-weight: normal;
font-style: normal;
}
body {
/* Same name as in the @font-face rule */
font-family: 'franklin_gothic_medium_cond';
}
</style>
PS: Make sure the font file is placed under the same folder as your css/html file.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Shijie Li