<?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; typography</title>
	<atom:link href="http://www.cardeo.ca/tag/typography/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 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 minimal WordPress theme: Manifest</title>
		<link>http://www.cardeo.ca/2009/free-minimal-wordpress-theme-manifest</link>
		<comments>http://www.cardeo.ca/2009/free-minimal-wordpress-theme-manifest#comments</comments>
		<pubDate>Fri, 03 Apr 2009 20:39:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress Themes]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Minimal]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1517</guid>
		<description><![CDATA[Free minimal WordPress theme: Manifest Features: &#187; Valid XHTML markup &#187; Microformat support &#187; 404 page &#187; Archives template &#187; Links template &#187; Google ad support &#187; IE6 unsupported &#187; Some webkit visual candy &#187; View Demo &#187; Download]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/04/manifest.png" alt="manifest" title="manifest" width="500" height="554" class="alignnone size-full wp-image-1518" /><span id="more-1517"></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>
<h4>Free minimal WordPress theme: Manifest</h4>
<p><b>Features:</b><br />
&#187; Valid XHTML markup<br />
&#187; Microformat support<br />
&#187; 404 page<br />
&#187; Archives template<br />
&#187; Links template<br />
&#187; Google ad support<br />
&#187; IE6 unsupported<br />
&#187; Some webkit visual candy</p>
<p>&#187; <a href="http://demo.jimbarraud.com/manifest/" target="_blank">View Demo</a><br />
&#187; <a href="http://jimbarraud.com/2009/03/19/manifest/" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-minimal-wordpress-theme-manifest/feed</wfw:commentRss>
		<slash:comments>2</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>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>
		<item>
		<title>25+ Web Typography Resources</title>
		<link>http://www.cardeo.ca/2009/25-web-typography-resources</link>
		<comments>http://www.cardeo.ca/2009/25-web-typography-resources#comments</comments>
		<pubDate>Mon, 09 Feb 2009 18:23:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>
		<category><![CDATA[web-typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1256</guid>
		<description><![CDATA[There&#8217;s a great article over at BuildInternet.com featuring 25+ Web Typography Resources. A few of them have been mentioned here before, but there&#8217;s some great resources there I was unaware of. Make sure you check it out.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a great article over at <a href="http://buildinternet.com" target="_blank">BuildInternet.com</a> featuring<br />
<a href="http://buildinternet.com/2009/02/25-font-tastic-type-resources-for-web-designers/" target="_blank">25+ Web Typography Resources</a>. A few of them have been mentioned here before, but there&#8217;s some great resources there I was unaware of. Make sure you check it out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/25-web-typography-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

