Economica is provided by Google Web Fonts ( link to sample font ).
It is loaded through this <link>
, which you can find in the page header:
<link href='http://fonts.googleapis.com/css?family=Economica:700' rel='stylesheet' type='text/css'>
And then implemented by browsers that support the CSS @font-face
rule so that they can display it on the page. You can learn more about @font-face
in the CSS3 specification .
Google Web Fonts uses this rule along with the appropriate format to tell the browser to embed the font. Browsers then download the font and try to display it if it is in a format that they understand, otherwise they just go back to what comes next on the stack (in this case, the common sans-serif
family). Thatβs all there really is.
The font format that ultimately loads depends on the browser: for modern browsers, you need to download the WOFF format , while older browsers such as IE7 get a different format called EOT (supported with IE4!) In order to embed the font. Previous versions of other browsers may display other formats such as TTF, OTF, and even SVG. You can learn more about the different formats and their use in articles about bulletproof @font-face
, like this one .
source share