<?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>distortion &#187; Web-Design</title>
	<atom:link href="http://www.giordanopiazza.com/blog/category/web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.giordanopiazza.com/blog</link>
	<description>gyo goes blogging</description>
	<lastBuildDate>Sun, 20 Jun 2010 11:05:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Custom fonts embedding: no hacks, no Javascript, no Flash.</title>
		<link>http://www.giordanopiazza.com/blog/web-design/custom-fonts-embedding-no-hacks-no-javascript-no-flash/</link>
		<comments>http://www.giordanopiazza.com/blog/web-design/custom-fonts-embedding-no-hacks-no-javascript-no-flash/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 23:08:24 +0000</pubDate>
		<dc:creator>gyo</dc:creator>
				<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[@font-face]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[fonts embed]]></category>
		<category><![CDATA[text-replacement]]></category>

		<guid isPermaLink="false">http://www.giordanopiazza.com/blog/?p=168</guid>
		<description><![CDATA[How to use custom fonts without sIFR, or any Javascript/Flash hacks? Here is a CSS-only solution: @font-face You can see a demo preview here, or download the files. Introduction We need to convert our preferred font into 3 different formats, to be sure it will be properly displayed on all the Browsers/OS flavours: TTF or [...]<p><a href="http://www.giordanopiazza.com/blog/web-design/custom-fonts-embedding-no-hacks-no-javascript-no-flash/">Custom fonts embedding: no hacks, no Javascript, no Flash.</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></description>
			<content:encoded><![CDATA[<p>How to use custom fonts without sIFR, or any Javascript/Flash hacks?<br />
Here is a CSS-only solution<strong>: @font-face</strong></p>
<p>You can see a <a href="http://www.giordanopiazza.com/candybox/web-fonts-embedding/" target="_blank">demo preview here</a>, or <a href="http://www.giordanopiazza.com/candybox/web-fonts-embedding/web_fonts_embedding.zip">download the files</a>.</p>
<p><span style="font-size: medium;"><strong>Introduction</strong><br />
</span>We need to convert our preferred font into 3 different formats, to be sure it will be properly displayed on all the Browsers/OS flavours<strong>:</strong></p>
<p><strong>TTF </strong>or <strong>OTF </strong>- FireFox 3.5, Safari, Opera<br />
<strong>EOT</strong> - Internet Explorer 4+ <span style="color: #999999;">(Yes, it works on IE too...)</span><strong><br />
SVG - </strong>Chrome, iPhone</p>
<p>To convert the fonts to TTF/EOT/SVG it's very easy, we'll just need one tool (or more depending on the source format).</p>
<p><strong><span style="font-size: medium;">The tools</span></strong><br />
<a id="i91l" title="Font Generator" href="http://www.fontsquirrel.com/fontface/generator" target="_blank"><strong>FontSquirrel - Font Generator</strong></a><strong><span style="font-size: medium;"><br />
</span></strong>This tool is amazing. It converts a TTF/OTF file to the different formats we need to embed a font in a website.<br />
It also compresses the font allowing us to choose the characters we need, stripping out all the others, resulting in a light version of the font. <a href="http://www.fontsquirrel.com/fontface/generator" target="_blank">go to the website</a></p>
<p><strong><a id="f7_j" title="Font converter" href="http://onlinefontconverter.com/" target="_blank">Font converter</a><br />
</strong>Another great online tool to convert fonts to/from different formats (.dfont, .ttf, .eot, .pfb, .otf). <a href="http://onlinefontconverter.com/" target="_blank">go to the website</a><br />
<strong><br />
<a id="bbbw" title="Font Forge" href="http://fontforge.sourceforge.net/">Font Forge</a><br />
</strong>The opensource font authoring tool. <a href="http://fontforge.sourceforge.net/" target="_blank">go to the website</a></p>
<p>And now, let's get our hands dirty...</p>
<p><span style="font-size: medium;"><strong>The Code</strong></span><br />
Now that we have the files we need (<strong>TTF</strong> or <strong>OTF</strong>, <strong>EOT</strong> and <strong>SVG</strong>), we're ready to embed the font in our website.<br />
Here is the CSS code:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="co1">@font-face {</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;<span class="kw1">font-family</span>: <span class="st0">'Museo500'</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp;src: <span class="kw2">url</span><span class="br0">&#40;</span><span class="st0">'Museo500-Regular.eot'</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp;src: local<span class="br0">&#40;</span><span class="st0">'Museo 500'</span><span class="br0">&#41;</span>, local<span class="br0">&#40;</span><span class="st0">'Museo-500'</span><span class="br0">&#41;</span>, <span class="kw2">url</span><span class="br0">&#40;</span><span class="st0">'Museo500-Regular.ttf'</span><span class="br0">&#41;</span> format<span class="br0">&#40;</span><span class="st0">'truetype'</span><span class="br0">&#41;</span>, <span class="kw2">url</span><span class="br0">&#40;</span><span class="st0">'Museo500-Regular.svg#Museo-500'</span><span class="br0">&#41;</span> format<span class="br0">&#40;</span><span class="st0">'svg'</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
<p>With <strong>font-family</strong>, we define the name to use in our CSS rules:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">h2 <span class="br0">&#123;</span> <span class="kw1">font</span>: <span class="re3">38px</span> <span class="st0">'&lt;strong&gt;Museo500&lt;/strong&gt;'</span>, Arial, <span class="kw2">sans-serif</span>; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
</ol>
</div>
<p>As you can see, we treat "Museo500" like any other font we normally use in CSS; there are also the fallback fonts, that will be used just in case something goes wrong. Done.</p>
<p><strong><span style="font-size: medium;">Some notes</span></strong><br />
If you want to use custom fonts then this is a hard match to win for sIFR &amp; Friends.</p>
<p>A negative point is that the Browser will show the fallback font until the custom one is loaded; on my humble ADSL connection it's very quick, but still noticeable.<br />
Though, once the font files are cached it doesn't happen anymore.</p>
<p>It's true that many users can't upgrade Browsers because of restrictions on their systems... well, I bet they are running Windows, and @font-face works on Internet-Explorer; while if they are on a Mac it works on Safari.<br />
The only "black-sheep" could be (surprisingly) FireFox, which only supports TTF/OTF since version 3.5 (the new version 3.6 also adds support for WOFF font files).</p>
<p>Last but not least, make sure the font's license gives you permissions to embed it in a website.</p>
<p><span style="font-size: medium;"><strong>Conclusion</strong></span><br />
Web fonts embedding is becoming more and more supported, and I'm sure it will be soon a common practice. So, why not to start now?<br />
This is not the latest trick to use custom fonts in websites, this is the future of web typography.</p>
<p>Spread the voice.</p>
<p><span style="font-size: medium;"><strong>Related links</strong></span><br />
I made a light version of the subject, here you can find the most extensive and complete resources: <a id="r.4-" title="Paul Irish" href="http://paulirish.com/2009/bulletproof-font-face-implementation-syntax/">Paul Irish</a> and <a id="k756" title="Jonathan Snook" href="http://snook.ca/archives/html_and_css/becoming-a-font-embedding-master">Jonathan Snook</a>.<br />
For my example I've chosen the beautiful font "Museo" by <a id="jtz8" title="Jos Buivenga's exljbris Font Foundry" href="http://www.josbuivenga.demon.nl/">Jos Buivenga's exljbris Font Foundry</a></p>
<p><a href="http://www.giordanopiazza.com/blog/web-design/custom-fonts-embedding-no-hacks-no-javascript-no-flash/">Custom fonts embedding: no hacks, no Javascript, no Flash.</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giordanopiazza.com/blog/web-design/custom-fonts-embedding-no-hacks-no-javascript-no-flash/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>4 Free SVN Clients for Mac OSX</title>
		<link>http://www.giordanopiazza.com/blog/web-design/4-free-svn-clients-mac-osx/</link>
		<comments>http://www.giordanopiazza.com/blog/web-design/4-free-svn-clients-mac-osx/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 00:02:28 +0000</pubDate>
		<dc:creator>gyo</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.giordanopiazza.com/blog/?p=151</guid>
		<description><![CDATA[Here is a list of 4 Free SVN clients available on Mac OSX. I couldn't find one that integrates in OSX's Finder though; some time ago I wrote a post about SCPlugin, which integrates with the Finder right-click a-là Tortoise. Well, even if it's a discontinued project, and it doesn't have all the advanced features [...]<p><a href="http://www.giordanopiazza.com/blog/web-design/4-free-svn-clients-mac-osx/">4 Free SVN Clients for Mac OSX</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></description>
			<content:encoded><![CDATA[<p>Here is a list of 4 Free SVN clients available on Mac OSX. I couldn't find one that integrates in OSX's Finder though; some time ago I wrote <a href="http://www.giordanopiazza.com/blog/web-design/free-svn-client-for-mac-osx/">a post about SCPlugin</a>, which integrates with the Finder right-click a-là Tortoise. Well, even if it's a discontinued project, and it doesn't have all the advanced features of Tortoise, I still use SCPlugin for my basic SVN tasks.</p>
<p>For all of you looking into something more complete and free...<br />
Here is something ready to download!</p>
<h3><a title="ZigVersion - Mac OSX SVN client" href="http://zigzig.com/">ZigVersion</a><a title="ZigVersion - Mac OSX SVN client" href="http://zigzig.com/"><br />
<img class="alignnone size-full wp-image-153" title="zigversion" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/11/zigversion.jpg" alt="zigversion" width="390" height="136" /></a></h3>
<hr />
<h3><a title="Bazaar -  Free Mac OSX SVN client" href="http://bazaar-vcs.org/en/">Bazaar</a><a title="Bazaar -  Free Mac OSX SVN client" href="http://bazaar-vcs.org/en/"><br />
<img class="alignnone size-full wp-image-154" title="bazaar" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/11/bazaar.jpg" alt="bazaar" width="390" height="136" /></a></h3>
<hr />
<h3><a title="SubCommander - Mac OSX SVN client" href="http://subcommander.tigris.org/">SubCommander<br />
<img class="alignnone size-full wp-image-159" title="subcommander" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/11/subcommander.jpg" alt="subcommander" width="390" height="136" /></a></h3>
<hr />
<h3><a title="RapidSVN - Mac OSX SVN client" href="http://www.rapidsvn.org/">RapidSVN<br />
<img class="alignnone size-full wp-image-157" title="rapidsvn" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/11/rapidsvn.jpg" alt="rapidsvn" width="390" height="136" /></a></h3>
<hr />
<p><a href="http://www.giordanopiazza.com/blog/web-design/4-free-svn-clients-mac-osx/">4 Free SVN Clients for Mac OSX</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giordanopiazza.com/blog/web-design/4-free-svn-clients-mac-osx/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Alternative sIFR-lite</title>
		<link>http://www.giordanopiazza.com/blog/web-design/alternative-sifr-lite/</link>
		<comments>http://www.giordanopiazza.com/blog/web-design/alternative-sifr-lite/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 21:09:03 +0000</pubDate>
		<dc:creator>gyo</dc:creator>
				<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[sifr]]></category>
		<category><![CDATA[text-replacement]]></category>

		<guid isPermaLink="false">http://www.giordanopiazza.com/blog/?p=83</guid>
		<description><![CDATA[I've playing around with sIFR (v2, v3 and jquery plugins) because I really love the concept behind it. After some tests and fights I found sIFR-lite. Dave at allcrunchy.com did a stunning job, and the result is a light-weight sIFR library (about 4k) that works better than the original, at least for me. Faster, lighter, [...]<p><a href="http://www.giordanopiazza.com/blog/web-design/alternative-sifr-lite/">Alternative sIFR-lite</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I've playing around with sIFR (v2, v3 and jquery plugins) because I really love the concept behind it.<br />
After some tests and fights I found <a href="http://www.allcrunchy.com/Web_Stuff/sIFR_lite/">sIFR-lite</a>.<br />
Dave at <a href="http://www.allcrunchy.com">allcrunchy.com</a> did a stunning job, and the result is a light-weight sIFR library (about 4k) that works better than the original, at least for me. Faster, lighter, better.</p>
<p>I decided to make some improvements to make it more flexible while keeping it super compact.</p>
<p><strong>This version includes:</strong><br />
- Fixed a bug with Flash Player 10+ (thanks to a <a href="http://www.wowebmaster.com/javascript/2008/sifr-lite-faster-smaller-sifr/">comment</a> from <a href="http://www.level-studios.com/">Patrick</a>)<br />
- CSS text alignment is now supported</p>
<ul>
<li><a title="Alternative sIFR-lite" href="http://www.giordanopiazza.com/candybox/sifr-lite/sIFR-lite.zip">Download the Alternative sIFR-lite</a></li>
<li><a title="Alternative sIFR-lite" href="http://www.giordanopiazza.com/candybox/sifr-lite/" target="_blank">See the DEMO</a></li>
</ul>
<p>Please refer to <a href="http://www.allcrunchy.com/Web_Stuff/sIFR_lite/">the homepage of sIFR-lite</a> for the documentation.</p>
<p>I do not take the full credits of sIFR or sIFR lite; the aim of this project is only to provide an alternative version with some bug-fixes, and some new features not included in the original.</p>
<p>Anyway... I'll be posting updates here, any input is welcome!</p>
<p><a href="http://www.giordanopiazza.com/blog/web-design/alternative-sifr-lite/">Alternative sIFR-lite</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giordanopiazza.com/blog/web-design/alternative-sifr-lite/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Free SVN Client for Mac OSX</title>
		<link>http://www.giordanopiazza.com/blog/web-design/free-svn-client-for-mac-osx/</link>
		<comments>http://www.giordanopiazza.com/blog/web-design/free-svn-client-for-mac-osx/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 15:01:21 +0000</pubDate>
		<dc:creator>gyo</dc:creator>
				<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[client]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[open-source]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.giordanopiazza.com/blog/?p=71</guid>
		<description><![CDATA[SCPlugin. A seamless SVN integration for OSX contextual menu.<p><a href="http://www.giordanopiazza.com/blog/web-design/free-svn-client-for-mac-osx/">Free SVN Client for Mac OSX</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></description>
			<content:encoded><![CDATA[<p>I've been searching for a nice svn client to use in OSX: I wanted something free, lightweight, simple like Tortoise for Windows.<br />
With svnX I was able to do the basics, but everything was very confused.</p>
<p>Finally I found it!</p>
<h3><a title="scplugin - free svn client for osx" href="http://scplugin.tigris.org/">SCPlugin<br />
</a></h3>
<p>It adds new item <strong>subversion</strong> in the right-click menu. Just like Tortoise, simple and efficient.<br />
Plus it's free and open-source... cool!</p>
<h3><a title="svn client for mac osx" href="http://scplugin.tigris.org/"><img class="alignnone size-full wp-image-73" title="scplugin - open-source svn client for mac osx" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/scplugin.jpg" alt="scplugin - open-source svn client for mac osx" width="391" height="199" /></a></h3>
<p>Quoted from the original website:<span style="color: #808080;"><em><br />
"The goal of the SCPlugin project is to integrate Subversion into the Mac OS X Finder. The inspiration for this project came from the TortoiseSVN project."</em></span></p>
<p>I don't understand why this is only "advertised" by a few people... this is what I needed from the beginning and it rocks!</p>
<p><a href="http://www.giordanopiazza.com/blog/web-design/free-svn-client-for-mac-osx/">Free SVN Client for Mac OSX</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giordanopiazza.com/blog/web-design/free-svn-client-for-mac-osx/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>6 Flash Essentials</title>
		<link>http://www.giordanopiazza.com/blog/flash/6-flash-essentials/</link>
		<comments>http://www.giordanopiazza.com/blog/flash/6-flash-essentials/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 00:14:52 +0000</pubDate>
		<dc:creator>gyo</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[deeplink]]></category>
		<category><![CDATA[essentials]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[upload]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.giordanopiazza.com/blog/?p=46</guid>
		<description><![CDATA[A selection of six Javascript/Flash libraries to solve common tasks in the tough world of web-design.
Here is a quick list of the essential tools to use with Flash<p><a href="http://www.giordanopiazza.com/blog/flash/6-flash-essentials/">6 Flash Essentials</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-67" title="flash_essentials" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/flash_essentials.gif" alt="flash_essentials" width="150" height="63" />A selection of six Javascript/Flash libraries to solve common tasks in the tough world of web-design.<br />
Here is a quick list of the essential tools to use with Flash:</p>
<h3><a href="http://flashden.net/videomaru/">VideoMaru</a></h3>
<p>Easy and powerful Flash video player, it let's you to create interfaces in minutes: just draw something, convert it to MovieClip and set an instance name (like play, stop, pause...).</p>
<p><a href="http://flashden.net/videomaru/"><img class="alignnone size-full wp-image-49" title="flash_essentials" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/flash_essentials.jpg" alt="flash_essentials" width="391" height="199" /><br />
</a></p>
<hr />
<h3><a href="http://swfupload.org/"><br />
SWFUpload</a></h3>
<p>Cool if you need to show a progress bar during uploads.</p>
<p><a href="http://swfupload.org/"><img class="alignnone size-full wp-image-50" title="swfupload" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/swfupload.jpg" alt="swfupload" width="391" height="125" /><br />
</a></p>
<hr />
<h3><a href="http://www.mikeindustries.com/blog/sifr/"><br />
sIFR</a></h3>
<p>Use any font in your website with this. It substitutes defined html tags with a Flash SWF file displaying the embedded font.</p>
<p><a href="http://www.mikeindustries.com/blog/sifr/"><img class="size-full wp-image-52 alignnone" title="logo_sifr2" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/logo_sifr2.gif" alt="logo_sifr2" width="192" height="116" /><br />
</a></p>
<hr />
<h3><a href="http://www.asual.com/swfaddress/"><br />
SWFAddress</a></h3>
<p>Deeplink for Flash. With this library you'll be able to link internal pages of a Flash website.</p>
<p><a href="http://www.asual.com/swfaddress/"><img class="alignnone size-full wp-image-53" title="asual-swfaddress" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/asual-swfaddress.jpg" alt="asual-swfaddress" width="382" height="33" /><br />
</a></p>
<hr />
<h3><a href="http://swffit.millermedeiros.com/"><br />
SWFFit</a></h3>
<p>Automatically resize your Flash movie keeping it accessible independent of screen resolution.</p>
<p><a href="http://swffit.millermedeiros.com/"><img class="alignnone size-full wp-image-54" title="swffit_logo" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/swffit_logo.gif" alt="swffit_logo" width="123" height="92" /><br />
</a></p>
<hr />
<h3><a href="http://www.sephiroth.it/weblog/archives/2006/10/flash_switcher_for_firefox.php"><br />
Flash Switcher</a></h3>
<p>Smart Firefox extension to quickly switch between different Flash Player versions.</p>
<p><a href="http://www.giordanopiazza.com/blog/flash/6-flash-essentials/">6 Flash Essentials</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giordanopiazza.com/blog/flash/6-flash-essentials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design Elements</title>
		<link>http://www.giordanopiazza.com/blog/web-design/web-design-elements/</link>
		<comments>http://www.giordanopiazza.com/blog/web-design/web-design-elements/#comments</comments>
		<pubDate>Thu, 05 Mar 2009 22:58:08 +0000</pubDate>
		<dc:creator>gyo</dc:creator>
				<category><![CDATA[Web-Design]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[inspiration]]></category>

		<guid isPermaLink="false">http://www.giordanopiazza.com/?p=22</guid>
		<description><![CDATA[While making a website you may need some inspiration. I'm not going to talk about yet-another-cool-websites-gallery (btw i love them), instead here is a website that shows elements like headers, footers, breadcrumbs and more taken from many famous (and not) websites. Pattern Tap http://patterntap.com/collections/ Web Design Elements - Copyright &#169; 2009 Giordano Piazza<p><a href="http://www.giordanopiazza.com/blog/web-design/web-design-elements/">Web Design Elements</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="size-thumbnail wp-image-33 alignleft" style="margin:0 7px 7px 0;" title="pattern_tap" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/pattern_tap-150x150.jpg" alt="pattern_tap" width="150" height="150" />While making a website you may need some inspiration. I'm not going to talk about yet-another-cool-websites-gallery (btw i love them), instead here is a website that shows elements like headers, footers, breadcrumbs and more taken from many famous (and not) websites.</p>
<h2><a title="pattern tap" href="http://patterntap.com/"><strong>Pattern Tap</strong></a></h2>
<p><a title="pattern tap - web design elements" href="http://patterntap.com/collections/" target="_blank">http://patterntap.com/collections/</a></p>
<p><strong><a href="http://patterntap.com/collections/"><img class="alignnone size-full wp-image-33" title="pattern_tap" src="http://www.giordanopiazza.com/blog/wp-content/uploads/2009/03/pattern_tap.jpg" alt="pattern_tap" width="391" height="199" /></a><br />
</strong></p>
<p><a href="http://www.giordanopiazza.com/blog/web-design/web-design-elements/">Web Design Elements</a> - Copyright &copy; 2009 <a href="http://www.giordanopiazza.com/blog">Giordano Piazza</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.giordanopiazza.com/blog/web-design/web-design-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
