How to rip webfonts from ffonts.net

Ffonts.net charges a $29 per year membership for the download of webfonts. There's a simple way to do that for free.

Search for a font and go to its page. I'll take "Ampersand" as an example:

http://www.ffonts.net/Ampersand.font

You can download the Windows font for free or choose "@WebFont":

http://webfonts.ffonts.net/Ampersand.font

Clicking on "Download the WebFont" takes you to "Upgrade to Premium account". Not free, not good, so we won't go there. We'll check the source of the page (CTRL+U in Firefox):

Around line 41 you'll find this code:

<meta property="fb:admins" content="1050048428"/> <link href="http://webfonts.ffonts.net/index.php?p=css&id=20018" rel="stylesheet" type="text/css" />

Click the highlighted link.

You'll see the code of the CSS file, starting with this:

@font-face {
font-family: 'Ampersand';
src: url('http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.woff') format('woff'),
url('http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.svg#Ampersand') format('svg'),
url('http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.eot'),
url('http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}

There's your answer, the links to the webfonts:

http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.woff
http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.svg
http://webfonts.ffonts.net/webfonts/A/M/Ampersand/Ampersand.ttf.eot

Now you can download for free!

Blah, blah, blah