<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Cardeo &#187; type</title>
	<atom:link href="http://www.cardeo.ca/tag/type/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cardeo.ca</link>
	<description>Ramblings on web design and social media</description>
	<lastBuildDate>Wed, 26 Oct 2011 17:58:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Using CSS3 font-face To Add Custom Fonts To Your Website</title>
		<link>http://www.cardeo.ca/2010/using-css3-font-face-to-add-custom-fonts-to-your-website</link>
		<comments>http://www.cardeo.ca/2010/using-css3-font-face-to-add-custom-fonts-to-your-website#comments</comments>
		<pubDate>Fri, 12 Mar 2010 23:45:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2803</guid>
		<description><![CDATA[One of the biggest features in CSS3 is the ability to use custom fonts in your web designs. In this tutorial, I&#8217;ll show you how to do just that using the free font Aller Display. Once you have downloaded the file, upload it to your server and note the location. Live Demo Browser Support Currently [...]]]></description>
			<content:encoded><![CDATA[<p>One of the biggest features in CSS3 is the ability to use custom fonts in your web designs. In this tutorial, I&#8217;ll show you how to do just that using the free font <a href="http://www.fontsquirrel.com/fonts/Aller">Aller Display</a>. Once you have downloaded the file, upload it to your server and note the location.<br />
<span id="more-2803"></span></p>
<p class="button"><a href="http://www.cardeo.ca/demos/font-face/">Live Demo</a></p>
<h4>Browser Support</h4>
<p>Currently these styles are supported by Safari, Firefox, Chrome, and Opera.</p>
<h4>Here&#8217;s What The CSS Looks Like</h4>
<p>The first step is to setup the <strong>@font-face</strong> selector with the font you want to use. For this example, I&#8217;m using the free font <strong>Aller Display</strong>. The <strong>font-family</strong> property declares the name/value for your custom font. The <strong>src</strong> property is the link to the font file on your server, which you have already uploaded.  </p>
<pre class="highlight">
@font-face {
 font-family: aller-display;
 src: url('aller-display.ttf');
}
</pre>
<blockquote class="center"><p><a href="http://codecanyon.net?ref=cardeo"><img src="/images/cc_468x60_v1.gif" width="468" height="60" alt="Code Canyon" /></a></p></blockquote>
<p>Now we&#8217;ll setup it up so every <strong><code>&lt;div&gt;</code></strong> in your document will use Aller Display. Make sure the <strong>font-family</strong> value matches the one you setup under the <strong>@font-face</strong> selector. In this case it is <strong>aller-display</strong>.</p>
<pre class="highlight">
@font-face {
 font-family: aller-display;
 src: url('aller-display.ttf');
}

div {
 font-family: aller-display;
 font-size: 2em;
}
</pre>
<h4>Adding the HTML</h4>
<p>The last thing we need to do is add the HTML, which is pretty basic.</p>
<pre class="highlight">
<code>&lt;div&gt;this is a custom font named aller display&lt;/div&gt;</code>
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/Screen-shot-2010-03-12-at-12-Mar-10-3.32.23-PM.png" alt="" title="aller-display-font-face" width="316" height="86" class="alignnone size-full wp-image-2805" /></p>
<h4>A Word On Copyright</h4>
<p>Make sure you check the license for a font before you use it. Many fonts are not currently licensed for web use. The safest policy is to just use free fonts. There&#8217;s a great collection over at <a href="http://www.dafont.com/">dafont.com</a>.</p>
<h4>Support Files</h4>
<p>That&#8217;s it, that&#8217;s all. Check out the live demo and download the source files below. </p>
<p class="button"><a href="http://www.cardeo.ca/demos/font-face/">Live Demo</a></p>
<p class="button"><a href="http://www.mediafire.com/?4mtzg4d0mt2">Download Source Files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/using-css3-font-face-to-add-custom-fonts-to-your-website/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Adding An Outline To Your Text Using the CSS3 text-stroke Property</title>
		<link>http://www.cardeo.ca/2010/adding-an-outline-to-your-text-using-the-css3-text-stroke-property</link>
		<comments>http://www.cardeo.ca/2010/adding-an-outline-to-your-text-using-the-css3-text-stroke-property#comments</comments>
		<pubDate>Wed, 03 Mar 2010 23:13:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[property]]></category>
		<category><![CDATA[text-stroke]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2787</guid>
		<description><![CDATA[In this tutorial I&#8217;ll show you how to add an outline, or stroke, to your text using the CSS3 text-stroke property. Browser Support Currently, these styles are only supported by Safari and Chrome. Here&#8217;s What The CSS Looks Like The first step is to declare a text color, I&#8217;ve picked red here. Next, we use [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial I&#8217;ll show you how to add an outline, or stroke, to your text using the CSS3 <strong>text-stroke</strong> property. <span id="more-2787"></span></p>
<h4>Browser Support</h4>
<p>Currently, these styles are only supported by Safari and Chrome.</p>
<h4>Here&#8217;s What The CSS Looks Like</h4>
<p>The first step is to declare a text color, I&#8217;ve picked red here. Next, we use the <strong>text-stroke</strong> property to assign a color (black) and weight (1px). For this example, I&#8217;ve created a class called <strong>.stroke</strong>.</p>
<pre class="highlight">
.stroke {
 color: #c00; /* text color */
 -webkit-text-stroke: 1px #000; /* stroke color and weight */
}
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/Screen-shot-2010-03-02-at-2-Mar-10-5.33.53-PM.png" alt="" title="text-stroke-red" width="395" height="113" class="alignnone size-full wp-image-2789" /></p>
<blockquote class="center"><p><strong>Make sure you check out the <a href="http://www.cardeo.ca/2011/cardeo-minimal-html-email-template">Cardeo Minimal HTML Email Template</a>.</strong></p></blockquote>
<h4>The text-stroke Property Explained</h4>
<p>Here&#8217;s a breakdown of the values for the <strong>text-stroke</strong> property.</p>
<ul>
<li>The first value is the stroke weight measured in pixels</li>
<li>The second value is the stroke color</li>
</ul>
<h4>Using Transparency</h4>
<p>If you&#8217;d like to make the text fill transparent, you can do so by using the <strong>text-fill-color</strong> property. For this example, I created a second class called <strong>.stroke-transparent</strong>.</p>
<pre class="highlight">
.stroke-transparent {
 -webkit-text-stroke: 1px #000;
 -webkit-text-fill-color: transparent;
}
</pre>
<h4>Here&#8217;s What It Looks Like</h4>
<p><img src="http://www.cardeo.ca/wp-content/uploads/2010/03/Screen-shot-2010-03-02-at-2-Mar-10-5.34.01-PM.png" alt="" title="text-stroke-transparent" width="405" height="90" class="alignnone size-full wp-image-2790" /></p>
<h4>Support Files</h4>
<p>That&#8217;s it, that&#8217;s all. Check out the <a href="http://cardeo.ca/demos/text-stroke">Live Demo</a> to see it in action, or <a href="http://www.mediafire.com/?kykiyjx5o33">Download</a> the source files. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/adding-an-outline-to-your-text-using-the-css3-text-stroke-property/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Adding text-shadow To Your Type Using CSS3</title>
		<link>http://www.cardeo.ca/2010/adding-text-shadow-to-your-type-using-css3</link>
		<comments>http://www.cardeo.ca/2010/adding-text-shadow-to-your-type-using-css3#comments</comments>
		<pubDate>Mon, 15 Feb 2010 23:36:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[text-shadow]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://www.cardeo.ca/?p=2571</guid>
		<description><![CDATA[Adding a shadow to your text with CSS3 is actually quite easy. In this tutorial, I&#8217;ll show you how to use the text-shadow property to do just that. Browser Support Currently, the text-shadow property works in Safari, Firefox, Opera, and Chrome. Adding shadow to your type A shadow is added to your type using the [...]]]></description>
			<content:encoded><![CDATA[<p>Adding a shadow to your text with CSS3 is actually quite easy. In this tutorial, I&#8217;ll show you how to use the <strong>text-shadow</strong> property to do just that.<br />
<span id="more-2571"></span></p>
<h4>Browser Support</h4>
<p>Currently, the <strong>text-shadow</strong> property works in Safari, Firefox, Opera, and Chrome.</p>
<h4>Adding shadow to your type</h4>
<p>A shadow is added to your type using the <strong>text-shadow</strong> property. In the example below, you&#8217;ll notice 3 pixel values. The first controls <strong>horizontal offset</strong>, the second controls <strong>vertical offset</strong>, and the third controls <strong>blur</strong>. The fourth value is the <strong>shadow color</strong>, which is set using a hex number.</p>
<p><strong>Here&#8217;s what the CSS looks like</strong></p>
<pre>
h1 {
 text-shadow: 2px 2px 2px #000;
}
</pre>
<h4>Here&#8217;s what it looks like</h4>
<blockquote><p style="text-shadow: 2px 2px 2px #000;font-size:2em;">This is a text shadow</p>
</blockquote>
<p>Like I mentioned in my intro, this one is pretty easy to implement into your designs,. I&#8217;d suggest playing around with the horizontal, vertical, and blur values to see what you can come up with. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2010/adding-text-shadow-to-your-type-using-css3/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use any TrueType font for your blog titles with AnyFont</title>
		<link>http://www.cardeo.ca/2009/use-any-truetype-font-for-your-blog-titles-with-anyfont</link>
		<comments>http://www.cardeo.ca/2009/use-any-truetype-font-for-your-blog-titles-with-anyfont#comments</comments>
		<pubDate>Mon, 18 May 2009 22:47:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[titles]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1670</guid>
		<description><![CDATA[I came across the AnyFont WordPress plugin today, and it looks like a great tool to gain additional control of the type on your blog. AnyFont allows you to use any truetype font for post titles, menu items or anywhere else you want to use a custom font in your theme design. oh yeah, it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>I came across the AnyFont WordPress plugin today, and it looks like a great tool to gain additional control of the type on your blog. AnyFont allows you to use any truetype font for post titles, menu items or anywhere else you want to use a custom font in your theme design. oh yeah, it&#8217;s free!<span id="more-1670"></span></p>
<blockquote class="center"><p><a href="http://marketplace.tutsplus.com/item/rockstar-wordpress-designer/119325?ref=cardeo"><img src="http://www.cardeo.ca/wp-content/uploads/2008/09/WP_468x60.jpg" alt="" title="WP_468x60" width="468" height="60" class="alignnone size-full wp-image-2995" /></a></p></blockquote>
<p><b>Features:</b><br />
&#187; Font Manager to easily upload new fonts to wordpress<br />
&#187; Style Management &#8211; allows an unlimited number of styles to be created.<br />
&#187; Font shadow options within the style manager(Requires PHP5 &#038; ImageMagick).<br />
&#187; Browser caching is enabled, reducing load time.<br />
&#187; Cache Management.<br />
&#187; Image replacements are SEO compatible.<br />
&#187; Easy text replacement options for post titles, page titles, widget titles, blog name and blog description.</p>
<p>&#187; <a href="http://2amlife.com/projects/anyfont" target="_blank">Download the AnyFont Plugin</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/use-any-truetype-font-for-your-blog-titles-with-anyfont/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Font: La Santisima Muerte</title>
		<link>http://www.cardeo.ca/2009/free-font-la-santisima-muerte</link>
		<comments>http://www.cardeo.ca/2009/free-font-la-santisima-muerte#comments</comments>
		<pubDate>Fri, 08 May 2009 23:36:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[hydro74]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1628</guid>
		<description><![CDATA[Free Font: La Santisima Muerte Radical 80&#8242;s Skateboard inspired font by Hydro74. &#187; Click here to download it from blackinblackapparel.com]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/05/lasantisimamuerte-495x274.jpg" alt="lasantisimamuerte" title="lasantisimamuerte" width="495" height="274" class="alignnone size-medium wp-image-1629" /></p>
<h4>Free Font: La Santisima Muerte</h4>
<p>Radical 80&#8242;s Skateboard inspired font by <a href="http://hydro74.com/" target="_blank">Hydro74</a>.</p>
<p>&#187; <a href="http://backinblackapparel.com/2009/05/1423/#more-1423" target="_blank">Click here to download it from blackinblackapparel.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-la-santisima-muerte/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Font: Agrafa Hairline</title>
		<link>http://www.cardeo.ca/2009/free-font-agrafa-hairline</link>
		<comments>http://www.cardeo.ca/2009/free-font-agrafa-hairline#comments</comments>
		<pubDate>Thu, 19 Feb 2009 20:29:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[agrafa]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[myfonts]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1267</guid>
		<description><![CDATA[Agrafa Hairline Character Set Agrafa Hairline Details Agrafa Hairline is a modern titling font. Great for use on a poster or flyer design. Download Agrafa Hairline from MyFonts.com]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/02/agrafa1.gif" alt="agrafa1" title="agrafa1" width="495" height="200" class="alignnone size-full wp-image-1320" /><br />
<span id="more-1267"></span></p>
<h4>Agrafa Hairline Character Set</h4>
<p><img src="http://cardeo.ca/wp-content/uploads/2009/02/agrafa2.gif" alt="agrafa2" title="agrafa2" width="495" height="250" class="alignnone size-full wp-image-1321" /></p>
<h4>Agrafa Hairline Details</h4>
<p>Agrafa Hairline is a modern titling font. Great for use on a poster or flyer design. <a href="http://www.myfonts.com/fonts/mugur-mihai/agrafa/" target="_blank">Download Agrafa Hairline from MyFonts.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-agrafa-hairline/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Legistyles.com: Free Type Styles For NewsNetWire</title>
		<link>http://www.cardeo.ca/2009/legistylescom-free-type-styles-for-newsnetwire</link>
		<comments>http://www.cardeo.ca/2009/legistylescom-free-type-styles-for-newsnetwire#comments</comments>
		<pubDate>Sat, 14 Feb 2009 00:45:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[reader]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[type]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1288</guid>
		<description><![CDATA[Legistyles.com: Free Type Styles for NewsNetReader Legistyles.com is a new website offering free type styles for the NewNetWire RSS Reader. Here&#8217;s a little of what they have to say: LegiStyles are a series of custom styles for the award-winning RSS reader NetNewsWire. Much attention has been paid to the design and typography of the styles [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/02/picture-5-495x148.png" alt="legistyles" title="legistyles" width="495" height="148" class="alignnone size-medium wp-image-1289" /></p>
<h4>Legistyles.com: Free Type Styles for NewsNetReader</h4>
<p><a href="http://www.legistyles.com/" target="_blank">Legistyles.com</a> is a new website offering free type styles for the NewNetWire RSS Reader. Here&#8217;s a little of what they have to say:</p>
<p class="block-quote">LegiStyles are a series of custom styles for the award-winning RSS reader NetNewsWire. Much attention has been paid to the design and typography of the styles to improve legibility and readability, and to enhance the overall reading experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/legistylescom-free-type-styles-for-newsnetwire/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Free Fonts Website FontSquirrel.com</title>
		<link>http://www.cardeo.ca/2009/new-free-fonts-website-fontsquirrelcom</link>
		<comments>http://www.cardeo.ca/2009/new-free-fonts-website-fontsquirrelcom#comments</comments>
		<pubDate>Sat, 14 Feb 2009 00:40:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1283</guid>
		<description><![CDATA[New Free Fonts Website FontSquirrel.com FontSquirrel.com is a new free fonts website aimed at designers. Currently they are offering 300+ fonts for download. Definitely worth checking out, here&#8217;s a little of what they have to say: Free fonts have met their match. We know how hard it is to find quality freeware that is licensed [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/02/picture-3-495x46.png" alt="picture-3" title="picture-3" width="495" height="46" class="alignnone size-medium wp-image-1284" /></p>
<h4>New Free Fonts Website FontSquirrel.com</h4>
<p><a href="http://www.fontsquirrel.com/" target="_blank">FontSquirrel.com</a> is a new free fonts website aimed at designers. Currently they are offering 300+ fonts for download. Definitely worth checking out, here&#8217;s a little of what they have to say:</p>
<p class="block-quote">Free fonts have met their match. We know how hard it is to find quality freeware that is licensed for commercial work. We&#8217;ve done the hard work, hand-selecting these typefaces and presenting them in an easy-to-use format.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/new-free-fonts-website-fontsquirrelcom/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Font: Megalopolis</title>
		<link>http://www.cardeo.ca/2009/free-font-megalopolis</link>
		<comments>http://www.cardeo.ca/2009/free-font-megalopolis#comments</comments>
		<pubDate>Sat, 14 Feb 2009 00:31:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[smeltry]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1268</guid>
		<description><![CDATA[Free Font: Megalopolis A cool titling font from smeltry.com. Pick up Megalopolis Extra for free!]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/02/megalopolis.gif" alt="megalopolis" title="megalopolis" width="495" height="200" class="alignnone size-full wp-image-1277" /><br />
<span id="more-1268"></span></p>
<h4>Free Font: Megalopolis</h4>
<p>A cool titling font from <a href="http://www.smeltery.net/fonts/megalopolis-extra" target="_blank">smeltry.com</a>. Pick up <a href="http://www.smeltery.net/fonts/megalopolis-extra" target="_blank">Megalopolis Extra</a> for free!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-megalopolis/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Font: Lavoisier</title>
		<link>http://www.cardeo.ca/2009/free-font-lavoisier</link>
		<comments>http://www.cardeo.ca/2009/free-font-lavoisier#comments</comments>
		<pubDate>Mon, 09 Feb 2009 18:30:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1259</guid>
		<description><![CDATA[Free Font: Lavoisier A free sans serif font from HaikuMonkey.net.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/02/lavoisier3-495x221.png" alt="lavoisier" title="lavoisier" width="495" height="221" class="alignnone size-medium wp-image-1260" /><br />
<span id="more-1259"></span></p>
<h4>Free Font: Lavoisier</h4>
<p>A free sans serif font from <a href="http://haikumonkey.net/?p=99" target="_blank">HaikuMonkey.net</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-lavoisier/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

