<?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; font</title>
	<atom:link href="http://www.cardeo.ca/tag/font/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>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>Free Font &#8211; Mank Sans</title>
		<link>http://www.cardeo.ca/2009/free-font-mank-sans</link>
		<comments>http://www.cardeo.ca/2009/free-font-mank-sans#comments</comments>
		<pubDate>Tue, 20 Jan 2009 18:36:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[dafont]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[sans-serif]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1155</guid>
		<description><![CDATA[Free Font &#8211; Mank Sans Mank Sans is a thin sans-serif font with a modern flavor. It&#8217;s available in four weights: Regular, Italic, Medium, and Medium Italic. Download it for free from dafont.com. Sorry for the lack of posts lately, I&#8217;ve been busy away from the internet life. I&#8217;m also heading down to Cancun for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/01/mank-sans.gif" alt="mank-sans" title="mank-sans" width="495" height="360" class="alignnone size-full wp-image-1210" /><br />
<span id="more-1155"></span></p>
<h4>Free Font &#8211; Mank Sans</h4>
<p>Mank Sans is a thin sans-serif font with a modern flavor. It&#8217;s available in four weights: Regular, Italic, Medium, and Medium Italic. Download it for free from <a href="http://www.dafont.com/font.php?file=mank_sans&#038;page=1&#038;nb_ppp_old=10&#038;text=Mank+Sans&#038;nb_ppp=10&#038;psize=m&#038;classt=alpha" target="_blank">dafont.com</a>.</p>
<p>Sorry for the lack of posts lately, I&#8217;ve been busy away from the internet life. I&#8217;m also heading down to Cancun for a week on Friday! I&#8217;m not bringing the laptop so there won&#8217;t be any updates next week. However, I will try and leave you with a bunch of new content before I leave. Can anyone recommend anything good to do while in Cancun?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-mank-sans/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free Font &#8211; Petit Latin</title>
		<link>http://www.cardeo.ca/2009/free-font-petit-latin</link>
		<comments>http://www.cardeo.ca/2009/free-font-petit-latin#comments</comments>
		<pubDate>Sat, 10 Jan 2009 08:16:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[petit-latin]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1156</guid>
		<description><![CDATA[Free Font &#8211; Petit Latin Petit Latin is a quirky little, modern serif font available for free download from moorstation.org.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/01/petit-latin.gif" alt="petit-latin" title="petit-latin" width="495" height="200" class="alignnone size-full wp-image-1196" /><br />
<span id="more-1156"></span></p>
<h4>Free Font &#8211; Petit Latin</h4>
<p>Petit Latin is a quirky little, modern serif font available for free download from <a href="http://moorstation.org/typoasis/designers/klein03/text02/petitlatin.htm" target="_blank">moorstation.org</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-petit-latin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font Preview with flippingtypical.com</title>
		<link>http://www.cardeo.ca/2009/font-preview-with-flippingtypicalcom</link>
		<comments>http://www.cardeo.ca/2009/font-preview-with-flippingtypicalcom#comments</comments>
		<pubDate>Tue, 06 Jan 2009 19:43:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Awesome]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1128</guid>
		<description><![CDATA[flippingtypical.com is an online tool that allows you to input text that is then displayed simultaneously within your browser. Nice little service for quickly viewing text in multiple fonts for the web. Found via surfstation.lu.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/01/picture-4-495x256.png" alt="flipping-typical" title="flipping-typical" width="495" height="256" class="alignnone size-medium wp-image-1129" /><br />
<a href="http://flippingtypical.com/" target="_blank">flippingtypical.com</a> is an online tool that allows you to input text that is then displayed simultaneously within your browser. Nice little service for quickly viewing text in multiple fonts for the web. Found via <a href="http://www.surfstation.lu" target="_blank">surfstation.lu</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/font-preview-with-flippingtypicalcom/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Font &#8211; Gentium</title>
		<link>http://www.cardeo.ca/2009/free-font-gentium</link>
		<comments>http://www.cardeo.ca/2009/free-font-gentium#comments</comments>
		<pubDate>Mon, 05 Jan 2009 04:50:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[font-face]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[typography]]></category>

		<guid isPermaLink="false">http://cardeo.ca/?p=1104</guid>
		<description><![CDATA[Gentium is a modern serif font available as a free download.]]></description>
			<content:encoded><![CDATA[<p><img src="http://cardeo.ca/wp-content/uploads/2009/01/gentium.gif" alt="gentium" title="gentium" width="495" height="200" class="alignnone size-full wp-image-1121" /><br />
<span id="more-1104"></span><br />
<a href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&#038;item_id=Gentium_download" target="_blank">Gentium</a> is a modern serif font available as a free download.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cardeo.ca/2009/free-font-gentium/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

