Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

font-family for Futura Condensed Extra Bold not working

I feel like a muppet for asking this but how can i get Futura Condensed Extra Bold to show up in CSS.

Before someone says it, yes I am aware that those Windows people out there wont be able to see it but this is for the Mac community, anyway at this stage i can't even see it and I have the font installed on my system.

So I have tried so many variations of this phrase but none work. I've tried with and without quotes, spaces, dashes, all sorts but it's still not working.

font-family: "Futura-CondensedExtraBold", sans-serif;

Here is a screenshot of the installed font, as you can see the name i used matches the PostScript name too.

Screenshot of Font Book

like image 621
hath22 Avatar asked Aug 02 '12 03:08

hath22


2 Answers

Most people who are using Futura on the web are loading through services like Typekit. So if you are seeing this typeface frequently on sites you like it is for this reason. I recommend trying that service or one similar so everyone can see it. I believe there is a free personal one and it is just a script install. Then your

font-family: "Futura-CondensedExtraBold", sans-serif;

would work. Just check what Typekit uses to load this. I believe there's would be

font-family: "futura-pt-condensed", sans-serif; font-weight: 600;

https://typekit.com/fonts/futura-pt-condensed

like image 131
Ross Edman Avatar answered Oct 16 '22 17:10

Ross Edman


Probably the name is not the one under which browsers know it. This may differ from the PostScript name. Try using a tool for listing installed fonts (see its explanations) to determine the name. My guess is that it might be "Futura Condensed ExtraBold".

like image 39
Jukka K. Korpela Avatar answered Oct 16 '22 16:10

Jukka K. Korpela