<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
			<channel>
				<title>Clagnut</title>
				<link>http://www.clagnut.com/</link>
				<description>A blog by Richard Rutter. Root through a heap of web design and development stuff and a few other tasty morsels. (latest 5 posts in full)</description>
				<language>en-gb</language>
				<copyright>Copyright 2003-2009, Richard Rutter</copyright>
				<webMaster>rich@clagnut.com (Richard Rutter)</webMaster>
				<managingEditor>rich@clagnut.com (Richard Rutter)</managingEditor>
				<image>
					<url>http://www.clagnut.com/images/clagnut_rss.png</url>
					<link>http://www.clagnut.com/</link>
					<title>Clagnut</title>
					<width>88</width>
					<height>31</height>
				</image>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/Clagnut" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
			<pubDate>Tue, 19 May 2009 06:56:34 PST</pubDate>
			<title>Whatever happened to font-stretch?</title>
			<link>http://feedproxy.google.com/~r/Clagnut/~3/XqfzgIIy7IM/</link>
			<description>&lt;p&gt;The &lt;code&gt;font-stretch&lt;/code&gt; property was &lt;a href="http://www.w3.org/TR/1998/REC-CSS2-19980512/fonts.html#propdef-font-stretch"&gt;introduced in &lt;abbr&gt;CSS&lt;/abbr&gt; 2.0&lt;/a&gt; over ten years ago, but was &lt;a href="http://archivist.incutio.com/viewlist/css-discuss/84247"&gt;culled&lt;/a&gt; in the transition to &lt;abbr&gt;CSS&lt;/abbr&gt; 2.1. It now languishes in the &lt;a href="http://www.w3.org/TR/css3-fonts/#font-stretch"&gt;&lt;abbr&gt;CSS&lt;/abbr&gt; 3 Fonts&lt;/a&gt; module. The property instructed browsers to select a &amp;#8216;normal, condensed, or extended face from a font family&amp;#8217;. Its removal from &lt;abbr&gt;CSS&lt;/abbr&gt; 2.1 was due to a complete lack of implementation by browsers. Unfortunately this leaves us with a gaping hole regarding font support.&lt;/p&gt;

	&lt;p&gt;Many professional typefaces are designed with extended and condensed styles. This is particularly prevalent in sans-serif faces such as Myriad Pro, Futura, Univers and of course Helvetica. Another such font is American Typewriter, which is shipped with Mac &lt;abbr&gt;&lt;abbr&gt;OS&lt;/abbr&gt;&amp;nbsp;X&lt;/abbr&gt; and comes with a condensed style.&lt;/p&gt;

	&lt;p&gt;So how does one specify text to be rendered in American Typewriter Condensed? Using font-stretch we would have done this:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;p {
  font-family:"American Typewriter", monospace;
  font-stretch:condensed; }&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;The &lt;code&gt;font-stretch&lt;/code&gt; property is well defined. As you can see it takes keywords, covering the range from &lt;code&gt;ultra-condensed&lt;/code&gt; to &lt;code&gt;ultra-expanded&lt;/code&gt;.  But as stated earlier, it is no longer in the &lt;abbr&gt;CSS&lt;/abbr&gt; 2 spec, and hence (and because) it is not supported in any browser at the time of writing.&lt;/p&gt;

	&lt;p&gt;Using the methodology I described for font-weight, there is a workaround based on &lt;code&gt;font-family&lt;/code&gt;. We can specify American Typewriter Condensed as follows:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;p {
  font-family:"AmericanTypewriter-Condensed",
   "American Typewriter Condensed",
   "American Typewriter", monospace}&lt;/code&gt;&lt;/pre&gt;

	&lt;p&gt;As with specifying font weights in this manner, there is a caveat that any widened or otherwise styled text will require a further &lt;code&gt;font-family&lt;/code&gt; rule. There is also the caveat &amp;#8211; in this case &amp;#8211; that it doesn&amp;#8217;t work at all on Firefox 3. See for yourself in the &lt;a href="http://www.clagnut.com/sandbox/fontstretch.html"&gt;test case&lt;/a&gt;.&lt;/p&gt;

	&lt;p&gt;Because Firefox 3 respects &lt;code&gt;font-family&lt;/code&gt; rules properly; that is to say it goes by the font family name, not the individual font name; it ignores the &amp;#8216;Condensed&amp;#8217; font names. This inherently eliminates the possibility of displaying the condensed style using the &lt;code&gt;font-family&lt;/code&gt; workaround. &lt;/p&gt;

	&lt;p&gt;So how will this situation be rectified? If &lt;code&gt;font-stretch&lt;/code&gt; were still in &lt;abbr&gt;CSS&lt;/abbr&gt; 2, browser makers would be trying to support it. But Microsoft won&amp;#8217;t implement anything from &lt;abbr&gt;CSS&lt;/abbr&gt; 3 until it is nailed down to a Candidate Recommendation. Webkit and Mozilla have higher &lt;abbr&gt;CSS&lt;/abbr&gt; 3 priorities. And the &lt;abbr&gt;CSS&lt;/abbr&gt; working group won&amp;#8217;t reintroduce font-stretch to &lt;abbr&gt;CSS&lt;/abbr&gt; 2 until someone implements it. Catch 22.&lt;/p&gt;

	&lt;p&gt;As I see it, our hopes lay at the feet of someone attending to either &lt;a href="https://bugs.webkit.org/show_bug.cgi?id=12530"&gt;Webkit Bug 12530&lt;/a&gt; or &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=3512"&gt;Mozilla Bug 3512&lt;/a&gt;. I would if I could. Can you?&lt;/p&gt;
&lt;p&gt;&lt;a href='http://clagnut.com/blog/2265/'&gt;Read or add comments&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=XqfzgIIy7IM:2d4GAoOpFc0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=XqfzgIIy7IM:2d4GAoOpFc0:q8eRBy9kBYE"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=q8eRBy9kBYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=XqfzgIIy7IM:2d4GAoOpFc0:W1ccf-mKbkM"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=W1ccf-mKbkM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=XqfzgIIy7IM:2d4GAoOpFc0:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?i=XqfzgIIy7IM:2d4GAoOpFc0:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Clagnut/~4/XqfzgIIy7IM" height="1" width="1"/&gt;</description>
			<category domain="http://www.clagnut.com/archive/standards/">Web standards</category>
			<category domain="http://www.clagnut.com/archive/typography/">Typography</category>
			<category domain="http://www.clagnut.com/archive/css_techniques/">CSS techniques</category>
<category domain="http://technorati.com/tag/Typography,">Typography,</category>
<category domain="http://technorati.com/tag/CSS">CSS</category>
<category domain="http://technorati.com/tag/techniques,">techniques,</category>
<category domain="http://technorati.com/tag/Web">Web</category>
<category domain="http://technorati.com/tag/standards,">standards,</category>
<category domain="http://technorati.com/tag/font-stretch,">font-stretch,</category>
<category domain="http://technorati.com/tag/CSS,">CSS,</category>
<category domain="http://technorati.com/tag/bug,">bug,</category>
<category domain="http://technorati.com/tag/condensed,">condensed,</category>
<category domain="http://technorati.com/tag/expanded,">expanded,</category>
<category domain="http://technorati.com/tag/fonts,">fonts,</category>
<category domain="http://technorati.com/tag/typefaces">typefaces</category>
		<feedburner:origLink>http://www.clagnut.com/blog/2265/</feedburner:origLink></item>
		<item>
			<pubDate>Fri, 08 May 2009 10:27:41 PST</pubDate>
			<title>Five minute chocolate mug cake</title>
			<link>http://feedproxy.google.com/~r/Clagnut/~3/OlYz7NtE5wU/</link>
			<description>&lt;p&gt;Something for the weekend, or indeed any other time of the week; a version of this recipe seems to have achieved viral status. I made the recipe last night. It&amp;#8217;s incredibly easy and it works a treat, although it&amp;#8217;s better viewed as more of a steamed chocolate pudding than a chocolate cake as such. &lt;/p&gt;

	&lt;p&gt;So, yes, it&amp;#8217;s a chocolate cake you make &amp;#8211; from scratch &amp;#8211; in a mug, which is ready to eat in five minutes. To serve two people, here&amp;#8217;s what you need:&lt;/p&gt;


&lt;ul&gt;
	&lt;li&gt;4 tablespoons plain flour&lt;/li&gt;
	&lt;li&gt;4 tablespoons sugar&lt;/li&gt;
	&lt;li&gt;2 tablespoons cocoa&lt;/li&gt;
	&lt;li&gt;1 egg&lt;/li&gt;
	&lt;li&gt;3 tablespoons milk&lt;/li&gt;
	&lt;li&gt;3 tablespoons oil (vegetable or sunflower)&lt;/li&gt;
	&lt;li&gt;1 tablespoon chocolate chips or grated chocolate&lt;/li&gt;
	&lt;li&gt;1 teaspoon vanilla extract&lt;/li&gt;
	&lt;li&gt;1 tablespoon liqueur of your choice (such as Cointreau or Kahl&amp;#250;a)&lt;/li&gt;
	&lt;li&gt;2 large coffee mugs&lt;/li&gt;
	&lt;li&gt;1 microwave oven&lt;/li&gt;

&lt;/ul&gt;
	&lt;p&gt;And here&amp;#8217;s what you do:&lt;/p&gt;


&lt;ol&gt;
	&lt;li&gt;Mix all the dry ingredients together in a bowl and divide between the mugs.&lt;/li&gt;
	&lt;li&gt;Beat the egg and mix in all the remaining ingredients.&lt;/li&gt;
	&lt;li&gt;Add the wet mixture to the mugs and stir well until it forms a chocolatey paste.&lt;/li&gt;
	&lt;li&gt;Put one mug on a plate in the microwave and cook on full power for 3 minutes (based on a 1000W oven &amp;#8211; adjust accordingly if yours is more or less powerful).&lt;/li&gt;
	&lt;li&gt;Repeat for the second mug.&lt;/li&gt;

&lt;/ol&gt;
	&lt;p&gt;Your chocolate pudding is now ready eat. You can do so straight from the mug (need I remind you it will be hot?) or tip out onto the plate and serve with cream, or ice cream or whatever you fancy. Enjoy!&lt;/p&gt;

	&lt;/div&gt;
&lt;div class='segment'&gt;

	&lt;p&gt;&lt;strong&gt;Update.&lt;/strong&gt; It&amp;#8217;s worth noting that some people use self-raising flour in this recipe. By all means give that a go &amp;#8211; it will probably give you a more cakey, less pudding-like texture. It may also make a big mess inside your microwave. Me, I like this as chocolate pudding.&lt;/p&gt;
&lt;p&gt;&lt;a href='http://clagnut.com/blog/2262/'&gt;Read or add comments&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=OlYz7NtE5wU:JgAQ6HXWgRI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=OlYz7NtE5wU:JgAQ6HXWgRI:q8eRBy9kBYE"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=q8eRBy9kBYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=OlYz7NtE5wU:JgAQ6HXWgRI:W1ccf-mKbkM"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=W1ccf-mKbkM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=OlYz7NtE5wU:JgAQ6HXWgRI:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?i=OlYz7NtE5wU:JgAQ6HXWgRI:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Clagnut/~4/OlYz7NtE5wU" height="1" width="1"/&gt;</description>
			<category domain="http://www.clagnut.com/archive/food_drink/">Food &amp; drink</category>
<category domain="http://technorati.com/tag/Food">Food</category>
<category domain="http://technorati.com/tag/and">and</category>
<category domain="http://technorati.com/tag/drink,">drink,</category>
<category domain="http://technorati.com/tag/recipe,">recipe,</category>
<category domain="http://technorati.com/tag/chocolate,">chocolate,</category>
<category domain="http://technorati.com/tag/cake,">cake,</category>
<category domain="http://technorati.com/tag/pudding,">pudding,</category>
<category domain="http://technorati.com/tag/dessert,">dessert,</category>
<category domain="http://technorati.com/tag/food">food</category>
<category domain="http://technorati.com/tag/porn,">porn,</category>
<category domain="http://technorati.com/tag/microwave">microwave</category>
		<feedburner:origLink>http://www.clagnut.com/blog/2262/</feedburner:origLink></item>
		<item>
			<pubDate>Fri, 01 May 2009 09:33:47 PST</pubDate>
			<title>But why, some say, the moon?</title>
			<link>http://feedproxy.google.com/~r/Clagnut/~3/I1Pcz5UthKA/</link>
			<description>&lt;p&gt;This time last week I was on a United Airlines flight returning from Orange County, where m&amp;#8217;learned colleague &lt;a href="http://jeckecko.net/"&gt;James Box&lt;/a&gt; and I were presenting at the &lt;a href="http://www.uie.com/events/web_app_summit/2009/"&gt;&lt;abbr&gt;UIE&lt;/abbr&gt; Web App Summit&lt;/a&gt;. We ran a workshop on &lt;a href="http://www.uie.com/events/web_app_summit/2009/program/#box-rutter"&gt;Wireframing and Prototyping for Highly Interactive Web Apps&lt;/a&gt; in which we covered the various joys of Post-its, paper and jQuery, and presented on &lt;a href="http://www.uie.com/events/web_app_summit/2009/day4/#rutter-box"&gt;Using Interactive Prototyping for a Richer Web Experience&lt;/a&gt; in which we extolled the virtues of &lt;abbr&gt;HTML&lt;/abbr&gt; as a design tool.&lt;/p&gt;

	&lt;p&gt;On the flight home we watched &lt;a href="http://www.frostnixon.net/"&gt;Frost/Nixon&lt;/a&gt;, a dramatic retelling of the post-Watergate television interviews between British talk-show host David Frost and former president Richard Nixon. As the credits rolled, we looked at each other and unanimously claimed the film to be &amp;#8216;bloody brilliant&amp;#8217;. Particularly marvellous were the superb portrayals of the protaganists by Michael Sheen and Frank Langella respectively. I heartily recommend it.&lt;/p&gt;

	&lt;p&gt;In the film, Nixon&amp;#8217;s masterful handling of Frost&amp;#8217;s early questioning brought to mind John F Kennedy&amp;#8217;s famous &lt;a href="http://www.jfklibrary.org/Historical+Resources/Archives/Reference+Desk/Speeches/JFK/003POF03SpaceEffort09121962.htm"&gt;1962 speech at Rice University&lt;/a&gt;, in which he explained and defended America&amp;#8217;s space effort, in particular landing a man on the Moon.&lt;/p&gt;

	&lt;p class='imgholder'&gt;&lt;object width="477" height="383"&gt;&lt;param name="movie" value="http://www.youtube.com/v/FYb_mhiE-qU&amp;#38;hl=en&amp;#38;fs=1&amp;#38;rel=0"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/FYb_mhiE-qU&amp;#38;hl=en&amp;#38;fs=1&amp;#38;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="477" height="383"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/p&gt;

	&lt;p&gt;Kennedy manages to justify what &lt;em&gt;could&lt;/em&gt; be viewed as an unconscionably expensive piece of paranoid Cold War propaganda &amp;#8211; it was as much about getting there first as getting there at all &amp;#8211; as an unprecedented exercise in engineering and exploration. His justification is beautifully simple:&lt;/p&gt;

	&lt;blockquote&gt;&lt;p&gt;But why, some say, the moon? Why choose this as our goal? And they may well ask why climb the highest mountain? Why, 35 years ago, fly the Atlantic? Why does Rice play Texas?&lt;/p&gt;&lt;p&gt; We choose to go to the moon. We choose to go to the moon in this decade and do the other things, not because they are easy, but because they are hard.&lt;/p&gt;&lt;/blockquote&gt;

	&lt;p&gt;I&amp;#8217;m not making any point at all here, other than to be reminded of one of the &lt;a href="http://www.guardian.co.uk/theguardian/series/greatspeeches"&gt;great speeches of the 20th century&lt;/a&gt;. By the way, I challenge you to &lt;a href="http://www.jfklibrary.org/Asset+Tree/Asset+Viewers/Audio+Video+Asset+Viewer.htm?guid={897B68E1-9DCA-46FF-B38E-51C541272ABA}&amp;#38;type=Audio"&gt;listen to the audio&lt;/a&gt; and not have a mental picture of &lt;a href="http://en.wikipedia.org/wiki/Joe_Quimby"&gt;Mayor Joe Quimby&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href='http://clagnut.com/blog/2261/'&gt;Read or add comments&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=I1Pcz5UthKA:t2meCm0uPTQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=I1Pcz5UthKA:t2meCm0uPTQ:q8eRBy9kBYE"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=q8eRBy9kBYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=I1Pcz5UthKA:t2meCm0uPTQ:W1ccf-mKbkM"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=W1ccf-mKbkM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=I1Pcz5UthKA:t2meCm0uPTQ:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?i=I1Pcz5UthKA:t2meCm0uPTQ:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Clagnut/~4/I1Pcz5UthKA" height="1" width="1"/&gt;</description>
			<category domain="http://www.clagnut.com/archive/conferences/">Conferences</category>
<category domain="http://technorati.com/tag/Conferences,">Conferences,</category>
<category domain="http://technorati.com/tag/Web">Web</category>
<category domain="http://technorati.com/tag/App">App</category>
<category domain="http://technorati.com/tag/Summit,">Summit,</category>
<category domain="http://technorati.com/tag/WAS09,">WAS09,</category>
<category domain="http://technorati.com/tag/JFK,">JFK,</category>
<category domain="http://technorati.com/tag/Frost/Nixon,">Frost/Nixon,</category>
<category domain="http://technorati.com/tag/speech,">speech,</category>
<category domain="http://technorati.com/tag/Moon,">Moon,</category>
<category domain="http://technorati.com/tag/Kennedy,">Kennedy,</category>
<category domain="http://technorati.com/tag/Rice">Rice</category>
		<feedburner:origLink>http://www.clagnut.com/blog/2261/</feedburner:origLink></item>
		<item>
			<pubDate>Tue, 07 Apr 2009 08:45:19 PST</pubDate>
			<title>Skillswap went typographic</title>
			<link>http://feedproxy.google.com/~r/Clagnut/~3/n7T9IoNC_8I/</link>
			<description>&lt;p&gt;Back in January I was part of a double bill with &lt;a href="http://jontangerine.com/"&gt;Jon Tan&lt;/a&gt;, entitled &lt;a href="http://skillswap-brighton.org/2009/01/16/skillswap-goes-typographic/"&gt;Skillswap goes typographic&lt;/a&gt;. It went down really well so I thought I&amp;#8217;d better tie it all together here.&lt;/p&gt;

	&lt;p class='imgholder inline'&gt;&lt;a href="http://www.flickr.com/photos/nataliedowne/3234395733/"&gt;&lt;img src="http://www.clagnut.com/images/skillswap09.jpg" alt="Me presenting my final slide, by Natalie Downe" /&gt;&lt;/a&gt;&lt;/p&gt;

	&lt;p&gt;My talk was on &amp;#8220;Facing up to Fonts&amp;#8221; the blurb for which went as follows:&lt;/p&gt;

	&lt;blockquote&gt;&lt;p&gt;Browser support for the typographical aspects of &lt;abbr&gt;CSS&lt;/abbr&gt; is gradually increasing. Things are on the up. Richard will be trouncing the myth of web-safe fonts, demonstrating how to go beyond bold, detailing the technicalities of font embedding and exploring the commercial and ethical minefield therein. The introduction of font embedding in particular is a long-awaited step in the right direction. However it brings with it a host of complications; technical, ethical and aesthetic.&lt;/p&gt;&lt;/blockquote&gt;

	&lt;p&gt;The &lt;a href="http://www.flickr.com/photos/nataliedowne/3234395733/" title="photo by Natalie Downe"&gt;take home points&lt;/a&gt; were:&lt;/p&gt;


&lt;ol&gt;
	&lt;li&gt;Think about typefaces &lt;strong&gt;beyond the core&lt;/strong&gt; web fonts&lt;/li&gt;
	&lt;li&gt;Make sure your &lt;strong&gt;font stacks&lt;/strong&gt; make sense and are useful&lt;/li&gt;
	&lt;li&gt;There&amp;#8217;s &lt;strong&gt;more&lt;/strong&gt; than regular and bold&lt;/li&gt;
	&lt;li&gt;Font &lt;strong&gt;embedding is here&lt;/strong&gt; and now&lt;/li&gt;

&lt;/ol&gt;
	&lt;p&gt;Jon&amp;#8217;s talk was on &amp;#8220;80% Science, 20% Art&amp;#8221; and was described thusly:&lt;/p&gt;

	&lt;blockquote&gt;&lt;p&gt;Web typography is a toddler in the big bad world of competing displays, browsers and operating systems. Jon takes it by the hand, and discusses the science that comes before the art. It&amp;#8217;ll be a celebration with lots of opportunity for questions and discourse. From exploring how fonts are rendered, to a quick refresher on typesetting and with a little history thrown in for good measure, it&amp;#8217;s time to get your glyph on!&lt;/p&gt;&lt;/blockquote&gt;


&lt;ul&gt;
	&lt;li&gt;My slides are &lt;a href="http://www.webtypography.net/talks/skillswap09/"&gt;on Webtypography.net&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;My audio is &lt;a href="http://huffduffer.com/skillswap/4118"&gt;on Huffduffer&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Jon&amp;#8217;s slides are &lt;a href="http://jontangerine.com/log/2009/03/skillswap-goes-typographic"&gt;on his blog&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Jon&amp;#8217;s audio is &lt;a href="http://huffduffer.com/skillswap/4117"&gt;on Huffduffer&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href='http://clagnut.com/blog/2255/'&gt;Read or add comments&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=n7T9IoNC_8I:JW-6wwK7sIU:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=n7T9IoNC_8I:JW-6wwK7sIU:q8eRBy9kBYE"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=q8eRBy9kBYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=n7T9IoNC_8I:JW-6wwK7sIU:W1ccf-mKbkM"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=W1ccf-mKbkM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=n7T9IoNC_8I:JW-6wwK7sIU:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?i=n7T9IoNC_8I:JW-6wwK7sIU:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Clagnut/~4/n7T9IoNC_8I" height="1" width="1"/&gt;</description>
			<category domain="http://www.clagnut.com/archive/typography/">Typography</category>
<category domain="http://technorati.com/tag/Typography,">Typography,</category>
<category domain="http://technorati.com/tag/Skillswap,">Skillswap,</category>
<category domain="http://technorati.com/tag/Jon">Jon</category>
<category domain="http://technorati.com/tag/Tan,">Tan,</category>
<category domain="http://technorati.com/tag/Richard">Richard</category>
<category domain="http://technorati.com/tag/Rutter,">Rutter,</category>
<category domain="http://technorati.com/tag/upcoming:event=1479519">upcoming:event=1479519</category>
		<feedburner:origLink>http://www.clagnut.com/blog/2255/</feedburner:origLink></item>
		<item>
			<pubDate>Mon, 30 Mar 2009 11:52:02 PST</pubDate>
			<title>Web Typography panel at SxSW</title>
			<link>http://feedproxy.google.com/~r/Clagnut/~3/JQ53XnzbEiU/</link>
			<description>&lt;p&gt;I was proud to be a part of the &lt;a href="http://sxsw.com/interactive/talks/panels?action=show&amp;#38;id=IAP0900555"&gt;Web Typography: Quit Bitchin&amp;#8217; &amp;#38; Get Your Glyph On!&lt;/a&gt; panel at SxSW 2009, along with Jon Tan, Ian Coyle, Elliot Jay Stocks and our super moderator Samantha Warren (photo above by &lt;a href="http://www.flickr.com/photos/keithmuth/3372462817/"&gt;Keith Muth&lt;/a&gt;). Thanks very much to all those attendees who tweeted and contributed to the discussion with some great questions (including H&amp;#229;kon Wium Lie, the inventor of &lt;abbr&gt;CSS&lt;/abbr&gt; no less).&lt;/p&gt;

	&lt;p&gt;Apologies to the many folk who couldn&amp;#8217;t get in. Typography panels are always really popular at SxSW, so it&amp;#8217;s a shame we ended up in a relatively small room which had filled to capacity about 10 minutes before the start. Still, at least there was a choice of 18 other panels to attend at the time [ahem].&lt;/p&gt;

	&lt;p&gt;Anyway I thought I&amp;#8217;d jot down some of the topics we discussed, and some we talked about beforehand but didn&amp;#8217;t have time for. Samantha has put up a rather &lt;a href="http://sxswtypography.com/"&gt;splendid page&lt;/a&gt; containing all the sites we mentioned, and I&amp;#8217;ll link to the podcast entry as soon as it is up.&lt;/p&gt;

	&lt;p class='imgholder'&gt;&lt;a href="http://www.flickr.com/photos/squaredeye/3369892258/"&gt;&lt;img src="http://www.clagnut.com/images/sxsw09_whale.jpg" alt="Squared Eye illustration of our panel" /&gt;&lt;/a&gt;&lt;br /&gt;
Illustration by Squared Eye&lt;/p&gt;

	&lt;h2&gt;Why do designers bitch about web typography?&lt;/h2&gt;

	&lt;p&gt;The transition from print (in particular, but also Flash and other mediums) to the web is hard because of the sense of giving up control. With the web, and &lt;abbr&gt;HTML&lt;/abbr&gt; &amp;#38; &lt;abbr&gt;CSS&lt;/abbr&gt; especially, designers no longer have any control of the medium. Will the reader be using paper? a laptop? their mobile device? There is no control or even knowledge of the size and shape of canvas, the typeface and size of the text. As a designer, if you can get your head around that you&amp;#8217;re well on the way. You have to accept this limitation as a liberation, because it is the very nature of the Web.&lt;/p&gt;

	&lt;p&gt;It&amp;#8217;s important to realise that readers control their own reading environment to a lesser or greater degree. But reliquishing control is not the same as giving up. You can still make assumptions about the medium, and make &lt;em&gt;suggestions&lt;/em&gt; for how the material could be displayed. Stylesheets are nothing more than suggestions; suggestions which are often adhered to but sometimes ignored.&lt;/p&gt;

	&lt;p&gt;For example, an assumption you can make is that Times (New Roman) will be installed, about which Bringhurst had this to say:&lt;/p&gt;

	&lt;blockquote&gt;&lt;p&gt;When the only font available is Times New Roman, the typographer must make the most of its virtues. The typography should be richly and superbly ordinary, so that attention is drawn to the quality of the composition, not the individual letterforms.&lt;/p&gt;&lt;/blockquote&gt;

	&lt;p&gt;This is the point. You work with what you&amp;#8217;ve got, or what you&amp;#8217;re likely to have. And you make that work hard. The classic example is &lt;a href="http://coudal.com/"&gt;Coudal&lt;/a&gt;&amp;#8217;s design for the &lt;a href="http://www.seedconference.com/"&gt;Seed Conference&lt;/a&gt; website, set entirely in Times. &lt;/p&gt;

	&lt;p class='imgholder'&gt;&lt;a href="http://www.flickr.com/photos/rohdesign/3371174895/"&gt;&lt;img src="http://www.clagnut.com/images/sxsw09-rhod1.png" alt="Sketchnote of the panel" /&gt;&lt;/a&gt;&lt;br /&gt;
Sketchnote by Mike Rohde&lt;/p&gt;

	&lt;h2&gt;Discuss current techniques for pushing typography online&lt;/h2&gt;

	&lt;p&gt;What is holding us back? Is it the lack of typefaces? Right now there are six faces you can almost definitely rely on for body copy: the core webfonts of  Times New Roman, Arial, Georgia, Verdana, Trebuchet and Comic Sans.&lt;/p&gt;

	&lt;p&gt;And there are a further five excellent faces with good distribution. These are the Cleartype fonts of Calibri, Cambria, Candara, Constantia and Corbel. The Cleartype fonts are distributed with Windows Vista, which has a penetration of about 40%, as well as the latest updates to the two most recent versions of Microsoft Office on Windows and Mac.&lt;/p&gt;

	&lt;p&gt;That&amp;#8217;s eleven typefaces, which should be enough for any designer. And it&amp;#8217;s important to remember that, from a technical perspective at the very least, these are quality fonts. They are well hinted for the screen, and have a complete &amp;#8211; and in some cases extensive &amp;#8211; character set. The Cleartype fonts also come equipped with a handful of ligatures (the older fonts don&amp;#8217;t need them).&lt;/p&gt;

	&lt;p&gt;Plus there&amp;#8217;s a load more fonts installed with Windows and Mac operating systems, as well as those installed with Microsoft Office. These include such worthwhile considerations as Gill Sans, Rockwell, Lucida Bright, Bell, Garamond and Cooper Black(!).&lt;/p&gt;

	&lt;p&gt;So availability of fonts is probably no excuse, but quality typesetting means attention to detail, and that takes time. So perhaps time is the sticking point?&lt;/p&gt;

	&lt;h2&gt;Font linking and the future&lt;/h2&gt;

	&lt;p&gt;Will &amp;#64;font-face font linking be the death nell or renaissance for typographers? It has to be viewed as a renaissance for typographers. The possibilities are huge. From a browser perspective it&amp;#8217;s not the future, it&amp;#8217;s here and it&amp;#8217;s now, with various implementations in Internet Explorer 4 upwards, Safari, Firefox 3.1 and Opera 10.&lt;/p&gt;

	&lt;p&gt;Only two things are really limiting the uptake of font linking. One is Microsoft&amp;#8217;s insistence on &lt;abbr&gt;EOT&lt;/abbr&gt; (embedded OpenType). But this is little more than a moral or ethical argument. However much &lt;abbr&gt;EOT&lt;/abbr&gt; smells of &lt;abbr&gt;DRM&lt;/abbr&gt;-lite, it doesn&amp;#8217;t really matter. Converting files to &lt;abbr&gt;EOT&lt;/abbr&gt; and serving them to &lt;abbr title='Internet Explorer'&gt;IE&lt;/abbr&gt; is just a technicality. A big pain-in-the-arse technicality, but one that we can already deal with.&lt;/p&gt;

	&lt;p&gt;The most important hurdle is font licensing. Without appropriate licensing, we&amp;#8217;re all criminals. Foundries need to catch up and view this as an opportunity not a threat. Licenses need to be easy to find, easier to understand, and more accommodating to sensible and ethical uses of font linking.&lt;/p&gt;

	&lt;p&gt;For example it&amp;#8217;s possible to use .htaccess to protect a file from direct linking or downloading. I&amp;#8217;m already doing this on one site and I believe I&amp;#8217;m honouring the font license &amp;#8211; more to follow on how and why. But we can&amp;#8217;t expect every Tom, Dick and Helen to be able to protect the font in this way, so perhaps a better solution is delegate the hosting to a trusted third party, or for font publishers and foundries to host the files themselves. Whatever the result, font foundries and type designers have to view font linking, not as a threat, but as an opportunity to make money and for their fonts to be used on a wider stage.&lt;/p&gt;

	&lt;p class='imgholder'&gt;&lt;a href="http://www.flickr.com/photos/rohdesign/3371994156/"&gt;&lt;img src="http://www.clagnut.com/images/sxsw09-rhod2.png" alt="Sketchnote of the panel" /&gt;&lt;/a&gt;&lt;br /&gt;
Sketchnote by Mike Rohde&lt;/p&gt;
&lt;p&gt;&lt;a href='http://clagnut.com/blog/2253/'&gt;Read or add comments&lt;/a&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=JQ53XnzbEiU:zYCQKTUnN9A:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=JQ53XnzbEiU:zYCQKTUnN9A:q8eRBy9kBYE"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=q8eRBy9kBYE" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=JQ53XnzbEiU:zYCQKTUnN9A:W1ccf-mKbkM"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?d=W1ccf-mKbkM" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/Clagnut?a=JQ53XnzbEiU:zYCQKTUnN9A:V_sGLiPBpWU"&gt;&lt;img src="http://feeds.feedburner.com/~ff/Clagnut?i=JQ53XnzbEiU:zYCQKTUnN9A:V_sGLiPBpWU" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/Clagnut/~4/JQ53XnzbEiU" height="1" width="1"/&gt;</description>
			<category domain="http://www.clagnut.com/archive/typography/">Typography</category>
			<category domain="http://www.clagnut.com/archive/sxsw/">SxSW</category>
<category domain="http://technorati.com/tag/SxSW">SxSW</category>
<category domain="http://technorati.com/tag/2009,">2009,</category>
<category domain="http://technorati.com/tag/Ian">Ian</category>
<category domain="http://technorati.com/tag/Coyle,">Coyle,</category>
<category domain="http://technorati.com/tag/Jon">Jon</category>
<category domain="http://technorati.com/tag/Tan,">Tan,</category>
<category domain="http://technorati.com/tag/Elliot">Elliot</category>
<category domain="http://technorati.com/tag/Jay">Jay</category>
<category domain="http://technorati.com/tag/Stocks,">Stocks,</category>
<category domain="http://technorati.com/tag/Samantha">Samantha</category>
<category domain="http://technorati.com/tag/Warren,">Warren,</category>
<category domain="http://technorati.com/tag/Richard">Richard</category>
<category domain="http://technorati.com/tag/Rutter,">Rutter,</category>
<category domain="http://technorati.com/tag/upcoming:event=453651,">upcoming:event=453651,</category>
<category domain="http://technorati.com/tag/panel,">panel,</category>
<category domain="http://technorati.com/tag/web">web</category>
<category domain="http://technorati.com/tag/typography,">typography,</category>
<category domain="http://technorati.com/tag/Typography,">Typography,</category>
<category domain="http://technorati.com/tag/SxSW">SxSW</category>
		<feedburner:origLink>http://www.clagnut.com/blog/2253/</feedburner:origLink></item>
	</channel>
		</rss>
