wiki
wiki

Reputation: 2063

How to detect the font which is used in this heading?

this is a simple facebook page(just as an example) and I want to know what is the name of the font which is used for the heading("Introducing Graph Search");

I can see the source of the page in google chrome by using the "view source" option in chrome but I can't just find the exact font name;

enter image description here

Upvotes: 1

Views: 81

Answers (3)

Nicolai
Nicolai

Reputation: 1953

it's set in css file. And you should search style not only for class applied on this element you also sholud remember that css can use inheritance. This font uses facebook

Upvotes: 1

Green Wizard
Green Wizard

Reputation: 3667

If you wish to use firefox plugin you may go for "font finder" plugin which gives good results on web pages.

https://addons.mozilla.org/en-US/firefox/addon/font-finder/

Upvotes: 1

Vland
Vland

Reputation: 4272

Use the inspector Computed Panel (Chrome)

font-family: 'Freight Sans Bold', 'lucida grande', tahoma, verdana, arial, sans-serif;

enter image description here

Upvotes: 1

Related Questions