<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Coolest thing since Sliced Bread: Fontshop releases Web FontFonts</title>
	<atom:link href="http://blog.glowinteractive.com/2010/02/coolest-thing-since-sliced-bread-fontshop-releases-web-fontfonts/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.glowinteractive.com/2010/02/coolest-thing-since-sliced-bread-fontshop-releases-web-fontfonts/</link>
	<description>codify, media, gaming, industry ramblings, finance</description>
	<lastBuildDate>Sat, 05 May 2012 22:49:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Meagan</title>
		<link>http://blog.glowinteractive.com/2010/02/coolest-thing-since-sliced-bread-fontshop-releases-web-fontfonts/#comment-211</link>
		<dc:creator>Meagan</dc:creator>
		<pubDate>Wed, 12 May 2010 19:39:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.glowinteractive.com/?p=758#comment-211</guid>
		<description>Agreed on all you&#039;re points, however the biggest drawback to those methods you mentioned is that legally, you may only use free typefaces. I&#039;m not to fluent on how, technically, this works, but in essence by using the embedding method (whether Sifr or @fontface) you may be violating copyright laws: (http://www.fontembedding.com/local/documents/EULA-embedding.pdf from http://www.fontembedding.com/fonts-and-the-law/)

Therefore, the reason why FontFonts is an amazing innovation is not because of their use for the @fontface property, but that they have developed a system which allows designers to LEGALLY use their typefaces on the web. This is a great influence for other foundries to step up and follow suite. 

Of course, if you wanted to be sneaky about it you could go right ahead and convert any font, regardless of license, to EOT. But why would you want to give any type designer the right to sue you? Especially considering how much time and effort they put into these faces.</description>
		<content:encoded><![CDATA[<p>Agreed on all you&#8217;re points, however the biggest drawback to those methods you mentioned is that legally, you may only use free typefaces. I&#8217;m not to fluent on how, technically, this works, but in essence by using the embedding method (whether Sifr or @fontface) you may be violating copyright laws: (<a href="http://www.fontembedding.com/local/documents/EULA-embedding.pdf" rel="nofollow">http://www.fontembedding.com/local/documents/EULA-embedding.pdf</a> from <a href="http://www.fontembedding.com/fonts-and-the-law/" rel="nofollow">http://www.fontembedding.com/fonts-and-the-law/</a>)</p>
<p>Therefore, the reason why FontFonts is an amazing innovation is not because of their use for the @fontface property, but that they have developed a system which allows designers to LEGALLY use their typefaces on the web. This is a great influence for other foundries to step up and follow suite. </p>
<p>Of course, if you wanted to be sneaky about it you could go right ahead and convert any font, regardless of license, to EOT. But why would you want to give any type designer the right to sue you? Especially considering how much time and effort they put into these faces.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nero Bossa</title>
		<link>http://blog.glowinteractive.com/2010/02/coolest-thing-since-sliced-bread-fontshop-releases-web-fontfonts/#comment-206</link>
		<dc:creator>Nero Bossa</dc:creator>
		<pubDate>Wed, 12 May 2010 14:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.glowinteractive.com/?p=758#comment-206</guid>
		<description>You know technically you could already use @fontface to specify a resource in TTF (true type) or OTF (open type) format under both Safari (Webkit, Chrome) and more recent Firefox -- Only IE requires the specific EOT (embedded open type) format. So if you already own the FontFont faces you want (or any others) in standard formats you could use them (just not in Internet Destroyer out of the box)

You can technically convert TTF/OTF to EOT using any of these tools:
http://www.kirsle.net/wizards/ttf2eot.cgi
http://onlinefontconverter.com/

(See this post):
http://circuitbomb.com/index.php/2009/09/easy-oft-to-eot-conversion-for-font-face-css3-and-internet-explorer/

If you wanted to now support all browsers with embedded fonts you could just (assuming you have the TTF/OTF to begin with):

(1) Convert the fonts to have both a TTF/OTF version (the original) and an EOT version for IE. 

(2) Make a default CSS that declares the @font-face (pointing to the TTF/OTF version)

(3) Use either a &#039;conditional comments&#039; approach (a non-JS way that IE only recognizes) or a simple JS-based browser detection to append an additional CSS for IE-only...

(4) In that CSS (for IE) override your @font-face declaration with one pointing to the EOT version...

If you had issues with Firefox supporting the TTF/OTF natively (sorry, at the moment I can&#039;t fully recall which versions support which level of font embedding) you could just use a JS-based detection (at step 3 above) and also have the alternate CSS applied to Firefox

This was technically done (in more limited form, since at the time @font-face support was pretty limited to Safari/Chrome) for CharacterArcade -- to specify Gotham TTF for headlines (rolling back to Verdana for the other browsers).

Another tip: If you are going to use a font for the web (in TTF/OTF) it is helpful to open the font resource in a font editor first and remove all the extended character data you won&#039;t need (for example extended latin characters if you don&#039;t need them). This reduces the font size significantly, which is useful since the font asset will have to download as part of the CSS -before- the page renders at all. Not dissimilar to using Flash to embed fonts and having to decide which characters to include for optimization.

So in summary... cool that they are bundling these to make it easy for people -- but if you already own the FF faces using them for the web is a pretty simple process.</description>
		<content:encoded><![CDATA[<p>You know technically you could already use @fontface to specify a resource in TTF (true type) or OTF (open type) format under both Safari (Webkit, Chrome) and more recent Firefox &#8212; Only IE requires the specific EOT (embedded open type) format. So if you already own the FontFont faces you want (or any others) in standard formats you could use them (just not in Internet Destroyer out of the box)</p>
<p>You can technically convert TTF/OTF to EOT using any of these tools:<br />
<a href="http://www.kirsle.net/wizards/ttf2eot.cgi" rel="nofollow">http://www.kirsle.net/wizards/ttf2eot.cgi</a><br />
<a href="http://onlinefontconverter.com/" rel="nofollow">http://onlinefontconverter.com/</a></p>
<p>(See this post):<br />
<a href="http://circuitbomb.com/index.php/2009/09/easy-oft-to-eot-conversion-for-font-face-css3-and-internet-explorer/" rel="nofollow">http://circuitbomb.com/index.php/2009/09/easy-oft-to-eot-conversion-for-font-face-css3-and-internet-explorer/</a></p>
<p>If you wanted to now support all browsers with embedded fonts you could just (assuming you have the TTF/OTF to begin with):</p>
<p>(1) Convert the fonts to have both a TTF/OTF version (the original) and an EOT version for IE. </p>
<p>(2) Make a default CSS that declares the @font-face (pointing to the TTF/OTF version)</p>
<p>(3) Use either a &#8216;conditional comments&#8217; approach (a non-JS way that IE only recognizes) or a simple JS-based browser detection to append an additional CSS for IE-only&#8230;</p>
<p>(4) In that CSS (for IE) override your @font-face declaration with one pointing to the EOT version&#8230;</p>
<p>If you had issues with Firefox supporting the TTF/OTF natively (sorry, at the moment I can&#8217;t fully recall which versions support which level of font embedding) you could just use a JS-based detection (at step 3 above) and also have the alternate CSS applied to Firefox</p>
<p>This was technically done (in more limited form, since at the time @font-face support was pretty limited to Safari/Chrome) for CharacterArcade &#8212; to specify Gotham TTF for headlines (rolling back to Verdana for the other browsers).</p>
<p>Another tip: If you are going to use a font for the web (in TTF/OTF) it is helpful to open the font resource in a font editor first and remove all the extended character data you won&#8217;t need (for example extended latin characters if you don&#8217;t need them). This reduces the font size significantly, which is useful since the font asset will have to download as part of the CSS -before- the page renders at all. Not dissimilar to using Flash to embed fonts and having to decide which characters to include for optimization.</p>
<p>So in summary&#8230; cool that they are bundling these to make it easy for people &#8212; but if you already own the FF faces using them for the web is a pretty simple process.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

