<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/1.5.1-alpha" -->
<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/"
>

<channel>
	<title>Best Solution for Web</title>
	<link>http://bestsolution.blogsome.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 12 Jul 2008 07:27:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5.1-alpha</generator>
	<language>en</language>

		<item>
		<title>Create a Lightbox effect only with CSS - no javascript needed</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/create-a-lightbox-effect-only-with-css-no-javascript-needed/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/create-a-lightbox-effect-only-with-css-no-javascript-needed/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 07:25:53 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
	<category>CSS</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/create-a-lightbox-effect-only-with-css-no-javascript-needed/</guid>
		<description><![CDATA[	Ref. emanueleferonato.com
	
You may call it Lightbox, or Greybox, or Thickbox, but it&#8217;s always the same effect.
	When you are on a page, and click on a photo or trig some event, a Lightbox is an effect that fades the pagein the background to show you new content in the foreground.
	I mean this effect
	
	In the upper example, [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/" target="_self" title="Create a Lightbox effect only with CSS - no javascript needed">emanueleferonato.com</a></p>
	<div class="entry">
<p>You may call it Lightbox, or Greybox, or Thickbox, but it&#8217;s always the same effect.</p>
	<p>When you are on a page, and click on a photo or trig some event, a Lightbox is an effect that fades the pagein the background to show you new content in the foreground.</p>
	<p>I mean this effect</p>
	<p><img border="0" alt="Lightbox" src="http://www.emanueleferonato.com/images/lightbox.jpg" /></p>
	<p>In the upper example, when clicking on a photo the site fades to black and shows the photo, in the lower one when clicking on &quot;login&quot; the site fades to white and shows the login form.</p>
	<p>There are tons of Lightbox scripts in the web, each one with its unique features and limitations, but all require massive use of Javascript or the installation of javascript frameworks.</p>
	<p>In some cases, there are &quot;lightweight&quot; versions with &quot;only&quot; 40KB of Javascript.</p>
	<p>This example does not want to compete with those scripts, but if you are looking for a simple, 100% <a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" target="_top"><font color="red"><span class="kLink">CSS</span></font></a>, 0% javascript lightbox, this may help you.</p>
	<p>Features of this Lightbox:</p>
	<p>100% CSS as said<br /> You can insert any content in it (some scripts out there only allow images)</p>
	<p>That&#8217;s all. Did you need something more? Think wisely&#8230;</p>
	<p>Let&#8217;s start with the CSS</p>
	<div class="igBar"><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" onclick="javascript:showPlainTxt('css-1'); return false;">PLAIN TEXT</a></div>
	<div class="syntax_hilite"><span class="langName">CSS:</span>
<div>
<div class="css">
<ol>
<li>
<div>.black_overlay{</div>
 </li>
	<li>
<div>&nbsp; &nbsp; display: none;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; position: absolute;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; top: 0%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; left: 0%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; width: 100%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; height: 100%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; background-color: black;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; z-index:1001;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; -moz-opacity: 0.8;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; opacity:.80;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; filter: alpha(opacity=80);</div>
 </li>
	<li>
<div>}</div>
 </li>
	<li>
<div>&nbsp;</div>
 </li>
	<li>
<div>.white_content {</div>
 </li>
	<li>
<div>&nbsp; &nbsp; display: none;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; position: absolute;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; top: 25%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; left: 25%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; width: 50%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; height: 50%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; padding: 16px;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; border: 16px solid orange;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; background-color: white;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; z-index:1002;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; overflow: auto;</div>
 </li>
	<li>
<div>} </div>
 </li>
</ol>
 </div>
 </div>
 </div>
	<p>The <strong>black_overlay</strong> class is the layer that will make the web page seem to fade. It&#8217;s a black 80% opaque background as long and wide as the browser that will overlay the web page (look at the z-index) and at the moment is not shown (look at the display).</p>
	<p>The <strong>white content</strong> class is the layer with the photo/login screen/whatever you want to appear in the Lightbox overlay. It&#8217;s a white layer to be placed over the black_overlay layer (look at the z-index, greater than the black_overlay one). The overflow allows you to have a scrollable content.</p>
	<p>In the <a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" target="_top"><font color="red"><span class="kLink">html </span><span class="kLink">file</span></font></a>, put this line just before the  tag</p>
	<div class="igBar"><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" onclick="javascript:showPlainTxt('html-2'); return false;">PLAIN TEXT</a></div>
	<div class="syntax_hilite"><span class="langName">HTML:</span>
<div>
<div class="html">
<ol>
<li>
<div><a href="http://december.com/html/4/element/div.html">&lt;div</a> id=&quot;light&quot; class=&quot;white_content&quot;&gt;Hi, I am an happy lightbox&lt;/div&gt;<a href="http://december.com/html/4/element/div.html">&lt;div</a> id=&quot;fade&quot; class=&quot;black_overlay&quot;&gt;&lt;/div&gt; </div>
 </li>
</ol>
 </div>
 </div>
 </div>
	<div><!-- google_ad_client = "pub-2062493463858889"; google_alternate_color = "FFFFFF"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "text_image"; google_ad_channel ="3095811308"; google_color_border = "ffffff"; google_color_link = "2277dd"; google_color_bg = "ffffff"; google_color_text = "444444"; google_color_url = "2277dd"; //-->  </div>
	<p>Now, trig the action you want to open the Lightbox and insert this code:</p>
	<div class="igBar"><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" onclick="javascript:showPlainTxt('html-3'); return false;">PLAIN TEXT</a></div>
	<div class="syntax_hilite"><span class="langName">HTML:</span>
<div>
<div class="html">
<ol>
<li>
<div>document.getElementById(&#8217;light&#8217;).style.display=&#8217;block&#8217;;document.getElementById(&#8217;fade&#8217;).style.display=&#8217;block&#8217;; </div>
 </li>
</ol>
 </div>
 </div>
 </div>
	<p>For example, in a link would be:</p>
	<div class="igBar"><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" onclick="javascript:showPlainTxt('html-4'); return false;">PLAIN TEXT</a></div>
	<div class="syntax_hilite"><span class="langName">HTML:</span>
<div>
<div class="html">
<ol>
<li>
<div><a href="http://december.com/html/4/element/a.html">&lt;a</a> href = &quot;javascript:void(0)&quot; onclick = &quot;document.getElementById(&#8217;light&#8217;).style.display=&#8217;block&#8217;;document.getElementById(&#8217;fade&#8217;).style.display=&#8217;block&#8217;&quot;&gt;Click me&lt;/a&gt; </div>
 </li>
</ol>
 </div>
 </div>
 </div>
	<p>Remember to include in the lightbox the code to close it, for example</p>
	<div class="igBar"><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" onclick="javascript:showPlainTxt('html-5'); return false;">PLAIN TEXT</a></div>
	<div class="syntax_hilite"><span class="langName">HTML:</span>
<div>
<div class="html">
<ol>
<li>
<div><a href="http://december.com/html/4/element/a.html">&lt;a</a> href = &quot;javascript:void(0)&quot; onclick = &quot;document.getElementById(&#8217;light&#8217;).style.display=&#8217;none&#8217;;document.getElementById(&#8217;fade&#8217;).style.display=&#8217;none&#8217;&quot;&gt;Hide me&lt;/a&gt; </div>
 </li>
</ol>
 </div>
 </div>
 </div>
	<p>A complete example page could be</p>
	<div class="igBar"><a href="http://www.emanueleferonato.com/2007/08/22/create-a-lightbox-effect-only-with-css-no-javascript-needed/#" onclick="javascript:showPlainTxt('html-6'); return false;">PLAIN TEXT</a></div>
	<div class="syntax_hilite"><span class="langName">HTML:</span>
<div>
<div class="html">
<ol>
<li>
<div>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;</div>
 </li>
	<li>
<div><a href="http://december.com/html/4/element/html.html">&lt;html&gt;</a></div>
 </li>
	<li>
<div>&nbsp; &nbsp; <a href="http://december.com/html/4/element/head.html">&lt;head&gt;</a></div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://december.com/html/4/element/title.html">&lt;title&gt;</a>LIGHTBOX EXAMPLE&lt;/title&gt;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://december.com/html/4/element/style.html">&lt;style&gt;</a></div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; .black_overlay{</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: none;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: absolute;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; top: 0%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; left: 0%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 100%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 100%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background-color: black;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; z-index:1001;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -moz-opacity: 0.8;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; opacity:.80;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; filter: alpha(opacity=80);</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; }</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; .white_content {</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; display: none;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; position: absolute;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; top: 25%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; left: 25%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; width: 50%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; height: 50%;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; padding: 16px;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; border: 16px solid orange;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; background-color: white;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; z-index:1002;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; overflow: auto;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; }</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &lt;/style&gt;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &lt;/head&gt;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; <a href="http://december.com/html/4/element/body.html">&lt;body&gt;</a></div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://december.com/html/4/element/p.html">&lt;p&gt;</a>This is the main content. To display a lightbox click <a href="http://december.com/html/4/element/a.html">&lt;a</a> href = &quot;javascript:void(0)&quot; onclick = &quot;document.getElementById(&#8217;light&#8217;).style.display=&#8217;block&#8217;;document.getElementById(&#8217;fade&#8217;).style.display=&#8217;block&#8217;&quot;&gt;here&lt;/a&gt;&lt;/p&gt;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://december.com/html/4/element/div.html">&lt;div</a> id=&quot;light&quot; class=&quot;white_content&quot;&gt;This is the lightbox content. <a href="http://december.com/html/4/element/a.html">&lt;a</a> href = &quot;javascript:void(0)&quot; onclick = &quot;document.getElementById(&#8217;light&#8217;).style.display=&#8217;none&#8217;;document.getElementById(&#8217;fade&#8217;).style.display=&#8217;none&#8217;&quot;&gt;Close&lt;/a&gt;&lt;/div&gt;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &nbsp; &nbsp; <a href="http://december.com/html/4/element/div.html">&lt;div</a> id=&quot;fade&quot; class=&quot;black_overlay&quot;&gt;&lt;/div&gt;</div>
 </li>
	<li>
<div>&nbsp; &nbsp; &lt;/body&gt;</div>
 </li>
	<li>
<div>&lt;/html&gt; </div>
 </li>
</ol>
 </div>
 </div>
 </div>
	<div><!-- google_ad_client = "pub-2062493463858889"; google_alternate_color = "FFFFFF"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "text_image"; google_ad_channel ="3095811308"; google_color_border = "ffffff"; google_color_link = "2277dd"; google_color_bg = "ffffff"; google_color_text = "444444"; google_color_url = "2277dd"; //-->  </div>
	<p>That you can find up and running <a target="_blank" href="http://www.emanueleferonato.com/downloads/lightbox.html">in this page</a>.</p>
	<p>In this example everything is static and preloaded, but you can easily add some php/ajax code to make it more dynamic while keeping the effect 100% CSS based.</p>
	<p>Hope you will find it useful, should you use it in one of your works send me a comment and I&#8217;ll feature your site as example.</p>
            			</div>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/create-a-lightbox-effect-only-with-css-no-javascript-needed/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Step by step CSS float tutorial</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/step-by-step-css-float-tutorial/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/step-by-step-css-float-tutorial/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 07:19:33 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
	<category>CSS</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/step-by-step-css-float-tutorial/</guid>
		<description><![CDATA[	Ref. maxdesign.com.au
	
 		Floatutorial takes you through the basics of floating elements  		such as images, drop caps, next and back buttons, image galleries, inline lists  		and multi-column layouts. 	
	General info
	
Some definitions
	Float basics
	Floats and &quot;clear&quot;
	Browser types

	 		Tutorial 1. Floating an image to the right 	
	 		Float an image to the right of a block of [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://css.maxdesign.com.au/floatutorial/?" target="_self" title="Step by step CSS float tutorial">maxdesign.com.au</a></p>
	<div>
<p> 		<strong>Floatutorial</strong> takes you through the basics of floating elements  		such as images, drop caps, next and back buttons, image galleries, inline lists  		and multi-column layouts. 	</p>
	<h3>General info</h3>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/definitions.htm">Some definitions</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/introduction.htm">Float basics</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/clear.htm">Floats and &quot;clear&quot;</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/browser-types.htm">Browser types</a></li>
</ul>
	<h3> 		Tutorial 1. Floating an image to the right 	</h3>
	<p> 		Float an image to the right of a block of text and apply a border to the image. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0101.htm">Step 1 - Start with a  paragraph of text and an image</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0102.htm">Step 2 - Apply float: right to the image</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0103.htm">Step 3 - Add margin</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0104.htm">Step 4 - Add a border</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0105.htm">Step 5 - Add padding</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0106.htm">All steps combined</a></li>
</ul>
	<h3> 		Tutorial 2. Floating an image and caption 	</h3>
	<p> 		Float an image and caption to the right of a block of text and apply borders using Descendant Selectors. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0201.htm">Step 1 - Start with a  paragraph of text and an image</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0202.htm">Step 2 - Add a div around image and caption</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0203.htm">Step 3 - Apply &quot;float: right&quot; and width to the div</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0204.htm">Step 4 - Apply margin to the div</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0205.htm">Step 5 - Add a background color</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0206.htm">Step 6 - Add padding</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0207.htm">Step 7 - Add a border to the div</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0208.htm">Step 8 - Add a border to the image</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0209.htm">Step 9 - Remove margin-top on the paragraph</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0210.htm">Step 10 - Playing with borders </a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0211.htm">All steps combined </a></li>
</ul>
	<h3> 		Tutorial 3. Floating a series of &quot;clear: right&quot; images 	</h3>
	<p> 		Float a series of images down the right side of the page, with content flowing beside them. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0301.htm">Step 1 - Start with a  paragraph of text and a series of images</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0302.htm">Step 2 - Apply float: right to the images</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0303.htm">Step 3 - Add margin</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0304.htm">Step 4 - Add &quot;clear: right&quot;</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0305.htm">Step 5 - Remove margin-top on the paragraph</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0306.htm">All steps combined </a></li>
</ul>
	<h3> 		Tutorial 4. Floating an image thumbnail gallery 	</h3>
	<p> 		Float a series of thumbnail images and captions to achieve an image gallery. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0401.htm">Step 1 - Start with some thumbnails and captions</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0402.htm">Step 2 - Float the divs</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0403.htm">Step 3 - Add a border</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0404.htm">Step 4 - Add margin</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0405.htm">Step 5 - Forcing a new line</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0406.htm">Step 6 - Add padding</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0407.htm">All steps combined</a></li>
</ul>
	<h3> 		Tutorial 5. Floating next and back buttons using lists 	</h3>
	<p> 		Float a simple list into rollover &quot;back&quot; and next &quot;buttons&quot;. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0501.htm">Step 1 - Start with a  paragraph of text and a list</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0502.htm">Step 2 - Remove bullets</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0503.htm">Step 3 - Remove padding and margins</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0504.htm">Step 4 - Float the list items</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0505.htm">Step 5 - Adding a line above the list</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0506.htm">Step 6 - Adding padding below the line</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0507.htm">Step 7 - Display block</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0508.htm">Step 8 - Moving the width</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0509.htm">Step 9 - Add a background color</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0510.htm">Step 10 - Add padding</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0511.htm">Step 11 - Text decoration and alignment</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0512.htm">Step 12 - Add a hover state</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0513.htm">All steps combined </a></li>
</ul>
	<h3> 		Tutorial 6. Floating inline list items 	</h3>
	<p> 		Float a simple list, converting it into a horizontal navigation bar. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0601.htm">Step 1 - Start with a simple unordered list</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0602.htm">Step 2 - Remove the bullets</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0603.htm">Step 3 - Remove padding and margins</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0604.htm">Step 4 - Display inline</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0605.htm">Step 5 - float the &quot;a&quot; state</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0606.htm">Step 6 - Add a background color</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0607.htm">Step 7 - Add padding to the &quot;a&quot; state</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0608.htm">Step 8 - Removing text decoration</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0609.htm">Step 9 - Add a border to separate the list items</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0610.htm">Step 10 - Add a rollover color</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0611.htm">Step 11 - Float the UL</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0612.htm">Step 12 - Add a background color to the UL </a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0613.htm">All steps combined </a></li>
</ul>
	<h3> 		Tutorial 7. Floating a scaleable drop cap 	</h3>
	<p> 		Float a scaleable drop cap to the left, resize it and adjust line-heights to suit your needs. 	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0701.htm">Step 1 - Start with a  paragraph of text</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0702.htm">Step 2 - Add a span around the first letter</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0703.htm">Step 3 - Float the first letter</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0704.htm">Step 4 - Increase the font size</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0705.htm">Step 5 - Set a line-height</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0706.htm">All steps combined </a></li>
</ul>
	<h3> 		Tutorial 8. Liquid two column layout 	</h3>
	<p> 		Float a left nav to achieve a two column layout with header and footer.  	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0801.htm">Step 1 - Start with the semantically marked up code</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0802.htm">Step 2 - Add width and margin to the container</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0803.htm">Step 3 - Add color, background color and border</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0804.htm">Step 4 - Add line height</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0805.htm">Step 5 - Styling the top banner</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0806.htm">Step 6 - Remove margins and padding from the h1</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0807.htm">Step 7 - Apply &quot;float&quot; to the leftnav</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0808.htm">Step 8 - Add margin and padding to the leftnav</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0809.htm">Step 9 - Setting margins to the &quot;content&quot; div </a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0810.htm">Step 10 - Add padding to the &quot;content&quot; div</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0811.htm">Step 11 - Styling the footer</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0812.htm">Step 12 - Add color and background color to the footer</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0813.htm">Step 13 - Add a border to the footer</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0814.htm">Step 14 - Removing top margins</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0815.htm">Step 15 - Setting a maximum line length</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0816.htm">All steps combined</a></li>
</ul>
	<h3> 		Tutorial 9. Liquid three column layout 	</h3>
	<p> 		Float left and right columns to achieve a three column layout with header and footer.  	</p>
	<ul>
<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0901.htm">Step 1 - Start with the semantically marked up code</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0902.htm">Step 2 - Add width and margin to the container</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0903.htm">Step 3 - Add color, background color and border</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0904.htm">Step 4 - Add line height</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0905.htm">Step 5 - Styling the top banner</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0906.htm">Step 6 - Remove margins and padding from the h1</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0907.htm">Step 7 - Apply &quot;float&quot;, margin and padding to the leftnav</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0908.htm">Step 8 - Apply &quot;float&quot;, margin and padding to the rightnav</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0909.htm">Step 9 - Setting margins to the &quot;content&quot; div</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0910.htm">Step 10 - Add padding to the &quot;content&quot; div</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0911.htm">Step 11 - Styling the footer</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0912.htm">Step 12 - Add color and background color to the footer</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0913.htm">Step 13 - Adding border to the footer</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0914.htm">Step 14 - Removing top margins</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0915.htm">Step 15 - Setting a maximum line length</a></li>
	<li><a href="http://css.maxdesign.com.au/floatutorial/tutorial0916.htm">All steps combined</a></li>
</ul>
 </div>
	<p>&nbsp;</p>
<a href="http://css.maxdesign.com.au/floatutorial/?" target="_self" title="Step by step CSS float tutorial"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/step-by-step-css-float-tutorial/feed/</wfw:commentRss>
	</item>
		<item>
		<title>101 CSS Techniques Of All Time</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/101-css-techniques-of-all-time/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/101-css-techniques-of-all-time/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 07:14:22 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>CSS</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/101-css-techniques-of-all-time/</guid>
		<description><![CDATA[	&nbsp;
	Ref. noupe.com
	CSS Sprites
	CSS sprites save HTTP requests by using CSS positioning to selectively display composite background images. To maximize accessibility and usability, CSS sprites are best used for icons or decorative effects.
	
CSS Sprites: Image Slicing&rsquo;s Kiss of Death- Say goodbye to old-school slicing and dicing when creating image maps, buttons, and navigation menus. Instead, say [...]]]></description>
			<content:encoded><![CDATA[	<p>&nbsp;</p>
	<p>Ref. <a href="http://www.noupe.com/design/101-css-techniques-of-all-time-part-1.html#more" target="_self" title="101 CSS Techniques Of All Time">noupe.com</a></p>
	<h4 class="title">CSS Sprites</h4>
	<p>CSS sprites save HTTP requests by using CSS positioning to selectively display composite background images. To maximize accessibility and usability, CSS sprites are best used for icons or decorative effects.</p>
	<ul>
<li><a href="http://www.noupe.com/design/www.alistapart.com/articles/sprites">CSS Sprites: Image Slicing&rsquo;s Kiss of Death</a>- Say goodbye to old-school slicing and dicing when creating image maps, buttons, and navigation menus. Instead, say hello to a deceptively simple yet powerful sprite-based CSS solution.</li>
	<li><a href="http://css-tricks.com/css-sprites-what-they-are-why-theyre-cool-and-how-to-use-them/">CSS Sprites: What They Are, Why They&rsquo;re Cool, and How To Use Them</a> - CSS-Tricks</li>
	<li><a href="http://css-tricks.com/css-sprites-what-they-are-why-theyre-cool-and-how-to-use-them/">CSS Sprites: How Yahoo.com and AOL.com Improve Web Performance</a>- Learn how AOL and Yahoo! use CSS sprites to improve performance for their busy home pages</li>
</ul>
	<p><a href="http://css-tricks.com/css-sprites-what-they-are-why-theyre-cool-and-how-to-use-them/"><img border="0" src="http://noupe.com/img/css8.gif" alt="CSS Sprites" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Rounded Corners</h4>
	<p>Rounded corners is one of the most popular and frequently requested CSS techniques. There lots of ways to create rounded corners with CSS, but they always require lots of complex HTML and CSS. Here are easy ways to achieve this effect.</p>
	<ul>
<li><a href="http://www.schillmania.com/content/projects/even-more-rounded-corners/" target="_blank">Even More Rounded Corners With CSS</a>- Single-image, PNG-based, fluid rounded corner dialogs with support for borders, alpha transparency throughout, gradients, patterns and whatever else you could want. <br />     <a href="http://www.schillmania.com/projects/dialog2/">Demo :<br />     <img border="0" src="http://noupe.com/img/css9.jpg" alt="rounded corners" /></a><br /> <hr class="dotted" />     </li>
	<li><a href="http://kalsey.com/2003/07/rounded_corners_in_css/">Rounded corners in CSS</a>- Simple bordered div which contained four divs that each had a background-image and that were positioned in each of the corners.</li>
	<li><a href="http://home.tiscali.nl/developerscorner/liquidcorners/liquidcorners.htm#introduction">Liquid rounded corners</a>- For liquid design and transparent scrolling - tutorial and stylesheet</li>
	<li><a href="http://www.alistapart.com/articles/mountaintop/">Mountaintop Corners</a>- easier way for creating decent rounded corners.<br />     <a href="http://www.alistapart.com/articles/mountaintop/"> <img border="0" src="http://noupe.com/img/css11.gif" alt="rounded corners" /></a></li>
</ul>
 <hr class="dotted" /><br />
<h4 class="title">Image Replacements Technique</h4>
	<p><a href="http://www.tjkdesign.com/articles/tip.asp">Thierry Image Placement</a>: Image Placement vs. Image Replacement (FIR)</p>
	<p>This technique is mostly for headlines by using CSS to replace normal HTML text, with a background image in order to achieve a particular look.Several different image replacement methods have been proposed, each with their pros and cons.</p>
	<p>when you need image replacement you can check the Gilder/Levin Method as described by <a href="http://www.mezzoblue.com/tests/revised-image-replacement/">Dave Shea</a> or, if the replaced text is linked and CSS support for IE/Mac is required, <a href="http://www.ryznardesign.com/web_coding/image_replacement/index.html#glrj">the Gilder Levin Ryznar Jacoubsen IR method</a>.</p>
	<p><a href="http://www.mezzoblue.com/tests/revised-image-replacement/"><img border="0" src="http://noupe.com/img/css3.gif" alt="image replacement" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">Sliding Doors</h4>
	<p><a href="http://www.alistapart.com/articles/slidingdoors2/">Sliding Doors</a> of CSS introduced a new technique for creating visually stunning interface elements with simple, text-based, semantic markup.Beautifully crafted, truly flexible interface components which expand and contract with the size of the text can be created if we use two separate background images.</p>
	<p><a href="http://www.alistapart.com/articles/slidingdoors2/"><img border="0" src="http://noupe.com/img/css4.gif" alt="sliding doors" /></a></p>
 <hr class="dotted" />
<p><a href="http://www.vertexwerks.com/tests/sidebox/">Sliding Doors&quot; Box&ndash; Rounded Corners for All</a>- The goal of this technique was to create rounded-corner boxes with visual flare and the absolute minimal amount of semantically correct markup. While making sure they could resize while keeping their backgrounds intact.</p>
	<p><a href="http://www.vertexwerks.com/tests/sidebox/"><img border="0" src="http://noupe.com/img/css7.gif" alt="sliding doors" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">Image Text Wrap Technique</h4>
	<p>How many times do you have an image floated left in a block of content, but want to keep that content from wrapping around your image?</p>
	<p>This technique allows you to wrap around image text flow control to emulate magazine style page layouts.</p>
	<ul>
<li><a href="http://www.bigbaer.com/css_tutorials/css.image.text.wrap.htm">BIG BAER advanced CSS technique - the sandbag div.</a></li>
	<li><a href="http://ghettocooler.net/2005/11/13/image-floats-without-the-text-wrap/">CSS Image Text Wrap</a></li>
	<li><a href="http://www.kevinfreitas.net/pro/articles/fancy-text-wrapping/">Fancy text wrapping around an image</a></li>
</ul>
	<p><a href="http://ghettocooler.net/2005/11/13/image-floats-without-the-text-wrap/"><img border="0" src="http://noupe.com/img/css6.gif" alt="Image Text Wrap" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">Equal Height Technique</h4>
	<p>One of the somewhat frustrating properties of CSS is the fact that elements only stretch vertically as far as they need to. So how can we make all columns appear to be the same height? Several techniques was introduced to solve this issue.</p>
	<ul>
<li><a href="http://www.alistapart.com/articles/fauxcolumns/">Faux Columns</a>- The simple secret is to use a vertically tiled background image to create the illusion of colored columns.</li>
	<li><a href="http://www.positioniseverything.net/articles/onetruelayout/equalheight">Equal Height Columns - revisited</a>- A method to make all columns appear to be the same height but without the need for faux column style background images.</li>
</ul>
	<ul>
<li><a href="http://www.456bereastreet.com/archive/200405/equal_height_boxes_with_css/">Equal height boxes with CSS</a>- The trick is to use the CSS properties display:table, display:table-row and display:table-cell to make containers (in this case div elements) behave like table cells. The basic XHTML structure looks like this:
<pre>    &lt;div class=&quot;equal&quot;&gt;    &lt;div class=&quot;row&quot;&gt;    &lt;div class=&quot;one&quot;&gt;&lt;/div&gt;    &lt;div class=&quot;two&quot;&gt;&lt;/div&gt;     &lt;div class=&quot;three&quot;&gt;&lt;/div&gt;    &lt;/div&gt;    &lt;/div&gt;    </pre>
	<p>Here is the CSS used to make this structure behave like a table:</p>
	<pre>     .equal {            display:table;    }    .row {            display:table-row;    }    .row div {            display:table-cell;    }    </pre>
 </li>
</ul>
 <hr class="dotted" /><br />
<h4 class="title">Turning A List Into A Navigation bar</h4>
	<p>Why use a list? Because a navigation bar, or menu, is a list of links. The most semantic way of marking up a list of links is to use a list element. Using a list also has the benefit of providing structure even if CSS is disabled.</p>
	<ul>
<li><a href="http://www.456bereastreet.com/archive/200501/turning_a_list_into_a_navigation_bar/">Turning a list into a navigation bar</a>- The markup is very simple. It&rsquo;s an unordered list, with each link in a separate list item.<br /> <hr class="dotted" />     <a href="http://www.456bereastreet.com/archive/200501/turning_a_list_into_a_navigation_bar/"> <img border="0" src="http://noupe.com/img/css12.gif" alt="Turning A List Into A Navigation bar" /></a><br /> <hr class="dotted" />     </li>
	<li><a href="http://www.projectseven.com/tutorials/css/uberlinks/index.htm">Uberlink CSS List Menus</a>      <a href="http://www.projectseven.com/tutorials/css/uberlinks/index.htm"> <img border="0" src="http://noupe.com/img/css13.gif" alt="Turning A List Into A Navigation bar" /></a><br /> <hr class="dotted" />     </li>
	<li><a href="http://solardreamstudios.com/learn/css/cssmenus">CSSMenus</a>  - Horizontal and Vertical 4 Level Deep List Menu</li>
	<li><a href="http://css.maxdesign.com.au/listamatic/"> Listamatic</a></li>
	<li><a href="http://www.noupe.com/menu/7-advanced-css-menu-for-your-next-design.html">7 Advanced CSS Menu</a>- A fresh round-up of 7 Advanced CSS Menus techniques, that might be useful for you in your next design project.</li>
</ul>
 <hr class="dotted" /><br />
<h4 class="title">Making Headlines With CSS</h4>
	<p>Headers in Web pages&ndash;marked up with h1, h2, h3, h4, h5, or h6 elements&ndash;help the reader determine the purpose of sections in content. If your header is visually stimulating, the odds are better that the section will capture your reader&rsquo;s eye.</p>
	<p><a href="http://steveeray.com/headinggallery/"> <img border="0" src="http://noupe.com/img/css14.gif" alt="heading" /></a></p>
 <hr class="dotted" />
<ul>
<li><a href="http://steveeray.com/headinggallery/">Heading Style Gallery</a>- Want something a little more stylish for your content headings (h1,h2,&hellip;) than a different font or color? Try one of the heading styles listed here to spruce up your content.</li>
	<li><a href="http://www.smileycat.com/miaow/archives/000150.php">Typography for Headlines</a>- Improve the typography in your headlines by being more creative, give them more &lsquo;pop&rsquo;, that sort of thing.</li>
	<li><a href="http://www.webreference.com/authoring/style/sheets/headlines/">Making Headlines With CSS</a>- With a dash of design, we can utilize CSS to stylize those Web page headers to catch the reader&rsquo;s eye and encourage them to read on.</li>
</ul>
 <hr class="dotted" /><br />
<h4 class="title">CSS Shadows Techniques</h4>
	<p>A technique to build flexible CSS drop shadows that can be applied to arbitrary block elements that can expand as the content of the block changes shape.</p>
	<ul>
<li><a href="http://www.alistapart.com/articles/cssdropshadows/">CSS Drop Shadows</a>-Build flexible CSS drop shadows that can be applied to arbitrary block elements that can expand as the content of the block changes shape.
<p><a href="http://www.alistapart.com/articles/cssdropshadows/"><img border="0" src="http://noupe.com/img/css15.gif" alt="CSS Shadows " /></a></p>
 <hr class="dotted" />     </li>
	<li><a href="http://web-graphics.com/mtarchive/001589.php">Fun with Drop Shadows</a>- Most of the existing techniques use negative margins, while this one is a really simple version wich uses relative positioning.</li>
	<li><a href="http://www.wubbleyew.com/tests/dropshadows.htm">Drop Shadows By Phil Baines</a>- This set of tests are based on an article found on A List Apart&rsquo;s technique, but with less CSS coding.</li>
	<li><a href="http://www.alistapart.com/articles/cssdrop2/">CSS Drop Shadows II: Fuzzy Shadows</a>- Picking up where Part I left off, in Part II designer Sergio Villarreal takes his standards-compliant drop-shadow to the next level by producing warm and fuzzy shadows.
<p><a href="http://www.alistapart.com/articles/cssdropshadows/"><img border="0" src="http://noupe.com/img/css16.gif" alt="CSS Shadows " /></a></p>
 <hr class="dotted" />     </li>
	<li><a href="http://theshapeofdays.com/2005/12/02/an-improved-css-shadow-technique.html">An improved CSS shadow technique</a>- A very robust and easy-to-use technique for applying snazzy looking shadows using only Web technology and a few little image elements prepared beforehand.</li>
</ul>
 <hr class="dotted" /><br />
<h4 class="title">CSS Transparency</h4>
	<p>One of the trickiest things to control, in a CSS-driven design, is the transparency of the interaction between foreground and background content.Below is a list of the best examples of the differing transparency approaches possible with CSS.</p>
	<ul>
<li><a href="http://www.cssplay.co.uk/opacity/png.html">Partial Opacity</a>- Placing text over an image can sometimes make it difficult to read, but with Stu Nicholls&rsquo;s methods the background for the text is made &lsquo;opaque&rsquo; using various methods of opacity (including css3) and the black text is then quite readable.
<p><a href="http://www.alistapart.com/articles/cssdropshadows/"><img border="0" src="http://noupe.com/img/css17.gif" alt="CSS Transparency" /></a></p>
 <hr class="dotted" />     </li>
	<li><a href="http://www.alistapart.com/articles/pngopacity/">Cross-Browser Variable Opacity with PNG</a>- How to overcome flaky browser support for PNG so you can take advantage of this graphic format&rsquo;s lossless compression, alpha transparency, and variable opacity.</li>
	<li><a href="http://weblensblogs.blogspot.com/2006/04/two-techniques-for-css-transparency.html">Two Techniques for CSS Transparency</a></li>
</ul>
 <hr class="dotted" /><br />
<h4 class="title">Various Link Techniques</h4>
	<ul>
<li><a href="http://www.askthecssguy.com/2006/12/showing_hyperlink_cues_with_cs_1.html">Showing Hyperlink Cues with CSS</a>- The CSS Guy shows us how to get the little icons next to hyperlinks that signify if that link will take you offsite, open a popup, or link to a file (as opposed to another html page). Here&rsquo;s how to do it in a way that&rsquo;s supported in IE7, Firefox, and Safari.</li>
	<li><a href="http://webdesign.maratz.com/lab/visited_links_styling/">The ways to style visited Links</a>- CSS offers various possibilities to make links more usable and preserve text readability at the same time. We need to differentiate visited and unvisited links, but we must keep text scannable and readable.</li>
	<li><a href="http://lab.arc90.com/2006/07/link_thumbnail.php">Link Thumbnail</a>- Shows users that are about to leave your site exactly where they&rsquo;re going. When that curious mouse pointer hovers over a link pointing to somewhere outside of your site, the script displays a small image of the destination page.</li>
	<li><a href="http://pooliestudios.com/projects/iconize/">Iconize Textlinks with CSS</a>- If you&rsquo;re looking for more icons to implement, Alex provides a nice start.</li>
</ul>
	<p><a href="http://pooliestudios.com/projects/iconize/"><img border="0" src="http://noupe.com/img/css2.gif" alt="" /></a></p>
 <hr class="dotted" />
<p>&nbsp;</p>
	<h4 class="title">Block Hover Effect Links</h4>
	<ul>
<li><a href="http://www.smileycat.com/miaow/archives/000230.php">How to Create a Block Hover Effect for a List of Links</a>- Learn how to create hover effect when you mouse over the list items to see the block hover effect in <a href="http://www.smileycat.com/miaow/archives/link-list-block-hover.php">the demo here</a>.</li>
	<li><a href="http://www.thewatchmakerproject.com/journal/154/simple-css-how-to-make-clickable-areas-bigger">How To Make Clickable Areas Bigger</a> - One basic principle of interaction design is that the larger the link you&rsquo;re trying to click on, the easier it is to click it. With this in mind, if you are using text-based links (for example in a navigation bar), the actual &lsquo;clickable&rsquo; area should be as large as possible.</li>
	<li><a href="http://ryanwerth.com/blog/article/10/anchor-tags-for-block-elements">Anchor tags for block elements</a>- You can see a <a href="http://www.ryanwerth.com/examples/block-links/">demo here</a>.</li>
</ul>
	<p><a href="http://www.smileycat.com/miaow/archives/link-list-block-hover.php"><img width="380" height="173" border="0" alt="block links" src="http://noupe.com/img/css18.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">Style an A to Z Index</h4>
	<ul>
<li><a href="http://www.smileycat.com/miaow/archives/000211.php">Anchor tags for block elements</a>- Creating an A to Z index along the same lines that doesn&rsquo;t break when you resize your text. You can see a <a href="http://www.smileycat.com/miaow/archives/style-az-list.php">demo here</a>.</li>
</ul>
	<p><a href="http://www.smileycat.com/miaow/archives/style-az-list.php"><img width="380" height="173" border="0" alt="style-az-list" src="http://noupe.com/img/css19.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">Typography Techniques</h4>
	<ul>
<li><a href="http://www.mandarindesign.com/style.html">CSS StyleFun</a>- How to achieve various effects using css, including typography (kerning, drop caps, big 1st letter), styled block-quotes, hover opacity&hellip; nice tutorial because it gives sample code/style sheets for each thing.</li>
	<li><a href="http://websitetips.com/css/typography/">CSS Fonts, CSS Typography</a>- Included are tutorials on how to size fonts with CSS, such as using CSS relative units, such as font size keywords, em, or % (percentage) units, along with cross-browser, cross-platform CSS font considerations.</li>
</ul>
	<p><a href="http://www.mandarindesign.com/style.html"><img width="380" height="173" border="0" alt="Typography" src="http://noupe.com/img/css23.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Pagination</h4>
	<p>Pagination is a mechanism which provides users with additional navigation options for browsing through single parts of the given article. Can be referred to by numbers, hints, arrows as well as &ldquo;previous&rdquo; and &ldquo;next&rdquo;-buttons.</p>
	<ul>
<li><a href="http://www.dynamicdrive.com/style/csslibrary/item/css_pagination_links/">CSS Pagination Links</a>- Inspired by the pagination interface you see at the footer of Digg.com.</li>
	<li><a href="http://kurafire.net/log/archive/2007/06/22/pagination-101">Pagination 101</a>- Pagination 101, that will give you some clues as to what makes good pagination.</li>
	<li><a href="http://www.mis-algoritmos.com/2007/03/16/some-styles-for-your-pagination/">Some styles for your pagination</a>- Styles for WP-Digg style pagination plugin, Digg Style pagination Class, the modular version, and the original programed bye strangerstudios.</li>
</ul>
	<p><a href="http://www.mis-algoritmos.com/2007/03/16/some-styles-for-your-pagination/"><img width="380" height="173" border="0" alt="CSS pagination" src="http://noupe.com/img/css29.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Tabs</h4>
	<p>Tabs-based interfaces allow multiple documents to be contained within a single window and tabs can be used to navigate between them. Using CSS, information is loaded instantly with Ajax-based techniques. Some of the most interesting techniques we&rsquo;ve found in the Web are listed below.</p>
	<ul>
<li><a href="http://www.dynamicdrive.com/style/csslibrary/item/glowing-tabs-menu/">Glowing Tabs Menu</a>- uses a background image that accentuates the outline of the tabs. And to jazz it up, the selected tab &quot;glows&quot;, by using the &quot;Sliding Doors&quot; technique to shift the original background image upwards to reveal the glowing version of the tab design. An exquisite yet professional looking horizontal menu.</li>
	<li><a href="http://onlinetools.org/tools/domtabdata/">DOMTab</a>- is a unobtrusive JavaScript CSS navigation tabs that turns a list of links connected to content sections into a tab interface.</li>
	<li><a href="http://livepipe.net/projects/control_tabs/">Control.Tabs</a>- Control.Tabs attaches creates a tabbed interface from an unordered list of links/anchors that point to any elements on your page that have an id attribute.</li>
	<li><a href="http://www.barelyfitz.com/projects/tabber/">Tabifier</a>- Automatically create an HTML tab interface using plug-and-play JavaScript.</li>
</ul>
	<p><a href="http://livepipe.net/projects/control_tabs/"><img width="380" height="173" border="0" alt="CSS Tabs" src="http://noupe.com/img/css20.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Pullquotes</h4>
	<p>Pull quotes are commonly used in print publications to draw emphasis to a particular quote or excerpt from a document. They are quite common in magazines and newspapers and are usually short extracts from the article.</p>
	<ul>
<li><a href="http://blogsolid.com/ideas/2007/simple-css-blockquotes-and-pullquotes/">Simple CSS Blockquotes and Pullquotes</a>- Blogsolid shows us how to get some sweet blockquotes and saucy pullquotes?</li>
	<li><a href="http://www.456bereastreet.com/archive/200609/automatic_pullquotes_with_javascript_and_css/">Automatic pullquotes</a>- Using JavaScript based technique to add pullquotes without having to duplicate text in the markup.</li>
	<li><a href="http://www.designmeme.com/articles/csspullquotes/">CSS Pull Quotes</a>- In this tutorial you will place the pullquote text in the title attribute of a paragraph or page division, and use the :before pseudo element&rsquo;s ability to generate content to display the pullquote on the page.</li>
</ul>
	<p><a href="http://livepipe.net/projects/control_tabs/"><img width="380" height="173" border="0" alt="CSS Pull Quotes" src="http://noupe.com/img/css21.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Blockquote</h4>
	<p>A blockquote is used when quoting text from another source, usually another blog or website. Blockquotes are intended to accommodate a larger amount of text, so as a rule of thumb, use blockquotes when you are quoting more than one or two sentences.</p>
	<ul>
<li><a href="http://www.456bereastreet.com/archive/200411/quotations_and_citations_quoting_text/">Quotations and citations: quoting text</a>- When quoting text in HTML, there are several ways of marking up the quoted text. Which way you choose depends on what you&rsquo;re quoting, how you&rsquo;re quoting it, and how important it is for you that all browsers render the quotations the same way.</li>
	<li><a href="http://24ways.org/2005/swooshy-curly-quotes-without-images">Swooshy Curly Quotes Without Images</a></li>
	<li><a href="http://simonwillison.net/2003/May/21/stylingBlockquotes/">Styling Blockquotes with CSS</a></li>
	<li><a href="http://www.mandarindesign.com/troops.html#blockquoteimage">Blockquotes with Image</a></li>
</ul>
	<p><a href="http://livepipe.net/projects/control_tabs/"><img width="380" height="173" border="0" alt="CSS Block Quotes" src="http://noupe.com/img/css22.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title"><img border="0" alt="" src="http://noupe.com/img/css24.gif" style="padding: 0px;" />Star Rater Techniques</h4>
	<ul>
<li><a href="http://komodomedia.com/blog/index.php/2007/01/20/css-star-rating-redux/">CSS Star Rating Part Redux</a>- Shows example of how to setup a star rating system using CSS.</li>
	<li><a href="http://www.jluvip.com/works/css/starvote/index1.html">CSS Ratings Selector</a>- Using a list item to create a star rater.</li>
	<li><a href="http://www.nickstakenburg.com/projects/starbox/">Starbox: Rate like a star</a>- Allows you to easily create all kinds of rating boxes using just one PNG image. The library is build on top of the Prototype javascript framework. For some extra effects you can add Scriptaculous as well.</li>
	<li><a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/">Unobtrusive AJAX Star Rating Bar </a></li>
</ul>
	<p><a href="http://komodomedia.com/blog/index.php/2007/01/20/css-star-rating-redux/"><img width="380" height="173" border="0" alt="CSS Star Rating" src="http://noupe.com/img/css25.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Image Pop-Up</h4>
	<ul>
<li><a href="http://moneytreesystems.com/css/picpopup.html">Cool CSS Image Pop-up</a>- This is an Pop-UP image effect that is similar to the ones you see using JavaScript on mouseover or on click but THIS ONE uses ONLY CSS!</li>
	<li><a href="http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/">CSS Popup Image Viewer</a>- With the help of CSS&rsquo;s &quot;:hover&quot; pseudo class, combined with relative and absolute positioning, the enlarged images are simply included on the page as normal HTML, &quot;popping&quot; up on demand.</li>
	<li><a href="http://www.cssplay.co.uk/menu/pop_ups.html">Pop-up images on inline links</a>- When you hover over the link the image is then given its correct size and it pops-up, in this case beneath the link, but you can place it anywhere you like relative to the link.</li>
	<li><a href="http://sonspring.com/journal/hoverbox-image-gallery">Hoverbox Image Gallery</a>- A super light-weight (8kb) roll-over photo gallery that uses nothing but CSS. <a href="http://host.sonspring.com/hoverbox/">View Example</a>.</li>
</ul>
	<p><a href="http://www.dynamicdrive.com/style/csslibrary/item/css-popup-image-viewer/"><img width="380" height="173" border="0" alt="CSS Image Pop-Up" src="http://noupe.com/img/css26.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">CSS Sitemaps</h4>
	<ul>
<li><a href="http://www.alexandersperl.de/tutorials/css/sitemap.html">Hierarchical Sitemap with Dashed Lines</a>- This tutorial will use a nested unordered list with two levels to create a hierarchical structure where dashed lines will show the dependencies. This could be used as a sitemap or to visualize a directory. A demo can be found <a href="http://www.alexandersperl.de/tutorials/css/files/sitemap/sitemap05.html">here</a>.</li>
	<li><a href="http://cssglobe.com/post.asp?id=903">Sitemap Styler: Style your Sitemaps with CSS and Javascript</a>- is a little CSS/JavaScript piece of code that can be easily applied to your sitemap list. All you have to do is include couple lines of code.A demo can be found <a href="http://cssglobe.com/lab/sitemap_styler/03/">here</a>.</li>
	<li><a href="http://www.alistapart.com/articles/sprucemaps">Spruced-Up Site Maps</a>- A nested set of clean, streamlined, semantic unordered lists.</li>
	<li><a href="http://www.zabdesign.de/pro/public/sitemap/sitemap-styled.html">Sitemap Celebration</a></li>
	<li><a href="http://betech.virginia.edu/index.php/2007/10/03/css-sitemap/">CSS SiteMap</a></li>
</ul>
	<p><a href="http://www.alexandersperl.de/tutorials/css/sitemap.html"><img width="380" height="173" border="0" alt="CSS sitemaps" src="http://noupe.com/img/css28.gif" /></a></p>
 <hr class="dotted" /><br />
<h4 class="title">Horizontal and Vertical Centering</h4>
	<ul>
<li><a href="http://www.jakpsatweb.cz/css/css-vertical-center-solution.html">Vertical Centering with CSS</a></li>
	<li><a href="http://www.456bereastreet.com/lab/centered/both/">Horizontal and Vertical Centering with CSS</a></li>
	<li><a href="http://www.joe2torials.com/view_tutorial.php?view=37">Horizontal And Vertical Centering</a></li>
	<li><a href="http://www.hicksdesign.co.uk/journal/how-to-vertical-centering-with-css">How to: vertical centering with CSS</a></li>
</ul>
	<p>&nbsp;</p>
	<p>&nbsp;</p>
	<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/101-css-techniques-of-all-time/feed/</wfw:commentRss>
	</item>
		<item>
		<title>100 photoshop tutorials for creating beautiful art</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/100-photoshop-tutorials-for-creating-beautiful-art/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/100-photoshop-tutorials-for-creating-beautiful-art/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 06:57:50 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
	<category>Photoshop</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/100-photoshop-tutorials-for-creating-beautiful-art/</guid>
		<description><![CDATA[	Ref. 3dtotal.com

]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://www.3dtotal.com/ps100/pstut100.html#html" target="_self" title="100 photoshop tutorials for creating beautiful art">3dtotal.com</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/100-photoshop-tutorials-for-creating-beautiful-art/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Photoshop Text Effects Round-Up: 51 Text Effect Tutorials Every Designer Should See</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/photoshop-text-effects-round-up-51-text-effect-tutorials-every-designer-should-see/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/photoshop-text-effects-round-up-51-text-effect-tutorials-every-designer-should-see/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 06:53:42 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Uncategorized</category>
	<category>Photoshop</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/photoshop-text-effects-round-up-51-text-effect-tutorials-every-designer-should-see/</guid>
		<description><![CDATA[	Ref. designvitality.com
	Text and the way it looks is a major part of any design. A great design can be cheapened if the text on the page looks wrong. Any logo is almost entirely text. From water to fire, these 51 tutorials will show you how to create any style of text you want.
	
	
Aqua Text Re-create [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://www.designvitality.com/blog/2007/09/photoshop-text-effect-tutorial/" target="_self" title="Photoshop Text Effects Round-Up: 51 Text Effect Tutorials Every Designer Should See">designvitality.com</a></p>
	<p>Text and the way it looks is a major part of any design. A great design can be cheapened if the text on the page looks wrong. Any logo is almost entirely text. From water to fire, these 51 tutorials will show you how to create any style of text you want.</p>
	</p>
	<ol>
<li><a href="http://www.voidix.com/aquatext.html">Aqua Text</a><br /> Re-create the font style that Mac OSX is famous for.<br /> <a href="http://www.voidix.com/aquatext.html"><img border="0" alt="text42.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text42.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/3D_cliff_text/">3D Cliff Text</a><br /> Make text that looks like it&rsquo;s a part of the land.<br /> <a href="http://www.tutorialwiz.com/3D_cliff_text/"><img border="0" alt="text43.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text43.jpg" /></a></li>
	<li><a href="http://www.eyesondesign.net/pshop/matrix/text_effect.htm">Matrix Style Text</a><br /> Take the red pill and learn how to create text in the style of The Matrix.<br /> <a href="http://www.eyesondesign.net/pshop/matrix/text_effect.htm"><img border="0" alt="text28.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text28.jpg" /></a></li>
	<li><a href="http://www.voidix.com/photoshop_brick_text.html">Brick Text</a><br /> Create text that looks like it was chipped out of a brick wall.<br /> <a href="http://www.voidix.com/photoshop_brick_text.html"><img border="0" alt="text41.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text41.jpg" /></a></li>
	<li><a href="http://www.photoshoptechniques.com/texp/fireptk.php">Set Your Text On Fire</a><br /> An advanced tutorial that shows how to create realistic flaming text.<br /> <a href="http://www.photoshoptechniques.com/texp/fireptk.php"><img border="0" alt="text13.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text13.jpg" /><br /> </a></li>
	<li><a href="http://www.quantumpetshop.com/tutorials/text/explosion.asp">Explosion Effect</a><br /> Explode your text with this tutorial.<br /> <a href="http://www.quantumpetshop.com/tutorials/text/explosion.asp"><img border="0" alt="text44.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text44.jpg" /></a></li>
	<li><a href="http://photoshopfrenzy.com/?p=71">Spiderman 3 Style Text</a><br /> Create text in the style of the Spiderman 3 logo.<br /> <a href="http://photoshopfrenzy.com/?p=71"><img border="0" alt="text38.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text38.jpg" /></a></li>
	<li><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/">Colorful Light Burst Effect</a><br /> Create text that looks as if it&rsquo;s bursting out.<br /> <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/light-burst/"><img border="0" alt="text09.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text09.jpg" /></a></li>
	<li><a href="http://swaymedia.com/?p=87">Web 2.0 Sticker Text Effect</a><br /> Another Web 2.0 style text effect, but this one looks as if it was a sticker.<br /> <a href="http://swaymedia.com/?p=87"><img border="0" alt="text31.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text31.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/3D_text/">3D Text</a><br /> Another tutorial showing how to create 3D text from a different perspective.<br /> <a href="http://www.tutorialwiz.com/3D_text/"><img border="0" alt="text29.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text29.jpg" /></a></li>
	<li><a href="http://www.design-this.com/tutorials.php?subaction=showfull&#038;id=1131418484&#038;archive=&#038;start_from=&#038;ucat=4&#038;">Worn Rubber Stamp Text</a><br /> Make text look as if were stamped on a page.<br /> <a href="http://www.design-this.com/tutorials.php?subaction=showfull&#038;id=1131418484&#038;archive=&#038;start_from=&#038;ucat=4&#038;"><img border="0" alt="text11.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text11.jpg" /></a></li>
	<li><a href="http://www.tutorials-photoshop.com/text-effects/chalk-text2.php">Chalk Text Effect</a><br /> Text that looks like chalk on asphault.<br /> <a href="http://www.tutorials-photoshop.com/text-effects/chalk-text2.php"><img border="0" alt="text45.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text45.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/3D_text2/">Blown Out 3D Text</a><br /> 3D text in the style of 3D films.<br /> <a href="http://www.tutorialwiz.com/3D_text2/"><img border="0" alt="text05.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text05.jpg" /></a></li>
	<li><a href="http://www.webresourceshop.com/de-logo-design.htm">Create A Professional Looking Logo</a><br /> A tutorial showing how the use of gradients and shadows can create professional looking text.<br /> <a href="http://www.webresourceshop.com/de-logo-design.htm"><img border="0" alt="text25.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text25.jpg" /></a></li>
	<li><a href="http://www.celoxdesign.net/free-photoshop-tutorials/3d-photoshop-text-61/page/1">Shiny 3D Text</a><br /> Another 3D tutorial that shows you how to create a reflective logo.<br /> <a href="http://www.celoxdesign.net/free-photoshop-tutorials/3d-photoshop-text-61/page/1"><img border="0" alt="text06.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text06.jpg" /></a></li>
	<li><a href="http://www.photoshopcafe.com/tutorials/liquid-type/liquid-type.htm">Reflective Liquid Type</a><br /> Create text that looks like reflective water.<br /> <a href="http://www.photoshopcafe.com/tutorials/liquid-type/liquid-type.htm"><img border="0" alt="text02.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text02.jpg" /></a></li>
	<li><a href="http://photoshopcandy.com/?p=20">Shiny Floor Effect</a><br /> Make it look like your text is being reflected from a shiny floor.<br /> <a href="http://photoshopcandy.com/?p=20"><img border="0" alt="text30.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text30.jpg" /></a></li>
	<li><a href="http://www.moesrealm.com/photoshop/liquid.html">Water Text</a><br /> This tutorial shows you how to create text that looks like water on any background.<br /> <a href="http://www.moesrealm.com/photoshop/liquid.html"><img border="0" alt="text01.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text01.jpg" /></a></li>
	<li><a href="http://www.photoshoppoint.com/text-effects/grungy-slimey-text-effect">Grungy, Slimey Text</a><br /> Use this tutorial to make text look as if it emerged from a swamp.<br /> <a href="http://www.photoshoppoint.com/text-effects/grungy-slimey-text-effect"><img border="0" alt="text32.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text32.jpg" /></a></li>
	<li><a href="http://photoshop-dragon.com/Tutorials/Text_Effects/Chrome_Text.htm">Chrome Metal Effect</a><br /> Create a beveled chrome font effect.<br /> <a href="http://photoshop-dragon.com/Tutorials/Text_Effects/Chrome_Text.htm"><img border="0" alt="text03.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text03.jpg" /></a></li>
	<li><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/gold/">Gold Plated Text</a><br /> A tutorial showing how to make your text look gold plated.<br /> <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/gold/"><img border="0" alt="text53.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text53.jpg" /></a></li>
	<li><a href="http://www.dreamdealer.nl/?action=viewTutorial&#038;id=41">Graffiti Text With Photoshop</a><br /> Create realistic looking graffiti on structures like walls.<br /> <a href="http://www.dreamdealer.nl/?action=viewTutorial&#038;id=41"><img border="0" alt="text07.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text07.jpg" /></a></li>
	<li><a href="http://www.psdtuts.com/tutorial_glass.html">Transparent GLass Lettering</a><br /> Very shiny and transparent lettering good for many uses.<br /> <a href="http://www.psdtuts.com/tutorial_glass.html"><img border="0" alt="text08.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text08.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/swirl_text/">Swirl Text</a><br /> Create a bright swirl using text.<br /> <a href="http://www.tutorialwiz.com/swirl_text/"><img border="0" alt="text10.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text10.jpg" /></a></li>
	<li><a href="http://www.me.com.np/tutorialphotoshop_pixeleffect.php">Highlight and Shadow Effect</a><br /> Create text with a pixelated, mosaic background.<br /> <a href="http://www.me.com.np/tutorialphotoshop_pixeleffect.php"><img border="0" alt="text14.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text14.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/glowing_gel_text/">Glowing Gel Text</a><br /> Glowing text that looks like gel.<br /> <a href="http://www.tutorialwiz.com/glowing_gel_text/"><img border="0" alt="text15.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text15.jpg" /></a></li>
	<li><a href="http://www.apdz.com/phpbb/viewtopic.php?t=135">3 Stroked Text</a><br /> Stylized text that looks layered.<br /> <a href="http://www.apdz.com/phpbb/viewtopic.php?t=135"><img border="0" alt="text16.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text16.jpg" /></a></li>
	<li><a href="http://www.readandforget.com/how2/Coldfear/">Icy Cold Effect</a><br /> Text that looks like ice is creeping up around it.<br /> <a href="http://www.readandforget.com/how2/Coldfear/"><img border="0" alt="text17.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text17.jpg" /></a></li>
	<li><a href="http://tutorialbeach.com/tutorials/3d_pixel.php">Very Stylish 3D Pixel Text</a><br /> Make pixelated text that looks 3D.<br /> <a href="http://tutorialbeach.com/tutorials/3d_pixel.php"><img border="0" alt="text18.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text18.jpg" /></a></li>
	<li><a href="http://www.teamphotoshop.com/tut_photoshop/tutorials/text/chromebase_6/tut_chrome.php">Chrome Text</a><br /> Make chrome text that looks like it&rsquo;s gleaming.<br /> <a href="http://www.teamphotoshop.com/tut_photoshop/tutorials/text/chromebase_6/tut_chrome.php"><img border="0" alt="text19.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text19.jpg" /></a></li>
	<li><a href="http://www.phong.com/tutorials/slime/">Rusted Slime Effect</a><br /> Make your text look like rust is coming down from it.<br /> <a href="http://www.phong.com/tutorials/slime/"><img border="0" alt="text20.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text20.jpg" /></a></li>
	<li><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/worn-torn-text/">Worn and Torn Text Effect</a><br /> Text that looks worn out and falling apart.<br /> <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/worn-torn-text/"><img border="0" alt="text21.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text21.jpg" /></a></li>
	<li><a href="http://www.empiredezign.com/version2/portfolio/pages/tutorials/dreamy.htm">Dreamy Text Effect</a><br /> Create text like something out of a dream.<br /> <a href="http://www.empiredezign.com/version2/portfolio/pages/tutorials/dreamy.htm"><img border="0" alt="text22.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text22.jpg" /></a></li>
	<li><a href="http://www.n-sane.net/text-effects/shocking-text/index.php">Schocking Text</a><br /> A text effect that looks as if bolts of electricity are coming out of it.<br /> <a href="http://www.n-sane.net/text-effects/shocking-text/index.php"><img border="0" alt="text23.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text23.jpg" /></a></li>
	<li><a href="http://www.flash-game-design.com/tutorials/furryText-photoshop-tutorial.html">Furry Text</a><br /> Use brushes to create text in any pattern.<br /> <a href="http://www.flash-game-design.com/tutorials/furryText-photoshop-tutorial.html"><img border="0" alt="text24.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text24.jpg" /></a></li>
	<li><a href="http://www.urlearn.com/phototut/Ston-text.htm">Realistic Stone Effect</a><br /> Create text that looks like it was carved out of stone.<br /> <a href="http://www.urlearn.com/phototut/Ston-text.htm"><img border="0" alt="text26.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/08/text26.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/guts_text/">Gutsy Text</a><br /> Create text that looks like it contains intestines.<br /> <a href="http://www.tutorialwiz.com/guts_text/"><img border="0" alt="text27.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text27.jpg" /></a></li>
	<li><a href="http://www.photoshopjungle.com/index.php?pagina=page/tutorials&#038;ID=20">Soft, Plastic Text</a><br /> Plastic text that looks great on any dark background.<br /> <a href="http://www.photoshopjungle.com/index.php?pagina=page/tutorials&#038;ID=20"><img border="0" alt="text33.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text33.jpg" /></a></li>
	<li><a href="http://www.psdspy.com/forums/tutorials/70-text-turf.html">Turf Text</a><br /> Blend any style text into turf.<br /> <a href="http://www.psdspy.com/forums/tutorials/70-text-turf.html"><img border="0" alt="text34.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text34.jpg" /></a></li>
	<li><a href="http://www.ranoo.com/forum/viewtopic.php?t=41">Diamond Text</a><br /> Bling out your text with diamonds.<br /> <a href="http://www.ranoo.com/forum/viewtopic.php?t=41"><img border="0" alt="text35.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text35.jpg" /></a></li>
	<li><a href="http://www.dailytuts.com/lavatexteffect.html">Molten Lava Blast Effect</a><br /> Use gradients and layer styles to create molten lava text.<br /> <a href="http://www.dailytuts.com/lavatexteffect.html"><img border="0" alt="text36.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text36.jpg" /></a></li>
	<li><a href="http://www.dailytuts.com/mossytext.html">Mossy Effect</a><br /> Text that looks as if moss is growing on it.<br /> <a href="http://www.dailytuts.com/mossytext.html"><img border="0" alt="text37.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text37.jpg" /></a></li>
	<li><a href="http://www.tutorialwiz.com/ice_text/">Ice Text</a><br /> Lettering that looks like it&rsquo;s frozen stiff.<br /> <a href="http://www.tutorialwiz.com/ice_text/"><img border="0" alt="text39.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text39.jpg" /></a></li>
	<li><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/plastic/">Plastic Effect</a><br /> Make your text look like it&rsquo;s wrapped in shiny plastic.<br /> <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/plastic/"><img border="0" alt="text40.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text40.jpg" /></a></li>
	<li><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/frag-tiles/">Fragmented Tiles Text Effect</a><br /> Put layered tiles on the inside of your text.<br /> <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/frag-tiles/"><img border="0" alt="text46.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text46.jpg" /></a></li>
	<li><a href="http://www.voidix.com/zoomtext.html">Zoom Text</a><br /> Give your text a little zoom blur.<br /> <a href="http://www.voidix.com/zoomtext.html"><img border="0" alt="text47.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text47.jpg" /></a></li>
	<li><a href="http://www.voidix.com/pixeltext.html">Pixel Text</a><br /> Create beveled text without layer styles.<br /> <a href="http://www.voidix.com/pixeltext.html"><img border="0" alt="text48.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text48.jpg" /></a></li>
	<li><a href="http://www.photoshopessentials.com/photoshop-text/text-effects/image-in-text.php">Image Inside Text</a><br /> Add an image to the inside of your text.<br /> <a href="http://www.photoshopessentials.com/photoshop-text/text-effects/image-in-text.php"><img border="0" alt="text49.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text49.jpg" /></a></li>
	<li><a href="http://www.vpdesignz.com/tutorials/gold_ruby_text/index.php">Gold And Ruby Text</a><br /> Make gold text that looks like it contains jewels.<br /> <a href="http://www.vpdesignz.com/tutorials/gold_ruby_text/index.php"><img border="0" alt="text50.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text50.jpg" /></a></li>
	<li><a href="http://www.photoshop.0tutor.com/archive/31/Make-a-girly-bling-bling-text-style-in-Photoshop.shtml">Girly Bling Text Effect</a><br /> Sparkling letters in a feminine style.<br /> <a href="http://www.photoshop.0tutor.com/archive/31/Make-a-girly-bling-bling-text-style-in-Photoshop.shtml"><img border="0" alt="text51.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text51.jpg" /></a></li>
	<li><a href="http://www.photoshopsupport.com/tutorials/cb/halftone.html">Halftone Effect</a><br /> Surround your text with a halftone style.<br /> <a href="http://www.photoshopsupport.com/tutorials/cb/halftone.html"><img border="0" alt="text52.jpg" src="http://www.designvitality.com/blog/wp-content/uploads/2007/09/text52.jpg" /></a></li>
</ol>
	<p>&nbsp;</p>
<a href="http://www.designvitality.com/blog/2007/09/photoshop-text-effect-tutorial/" target="_self" title="Photoshop Text Effects Round-Up: 51 Text Effect Tutorials Every Designer Should See"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/photoshop-text-effects-round-up-51-text-effect-tutorials-every-designer-should-see/feed/</wfw:commentRss>
	</item>
		<item>
		<title>12 Websites To Help You Learn Flash/ActionScript</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/12-websites-to-help-you-learn-flashactionscript/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/12-websites-to-help-you-learn-flashactionscript/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 05:22:42 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Flash</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/12-websites-to-help-you-learn-flashactionscript/</guid>
		<description><![CDATA[	Ref. sixrevisions.com
	Adobe Flash is an excellent technology that allows developers to add interactivity and smooth animations to web pages. Its popularity is so immense that you&rsquo;ll find many websites dedicated to helping developers interested in Flash.
	In this article, you&rsquo;ll find 12 wonderful websites that&rsquo;s  worth a bookmark if you&rsquo;re looking into sharpening your Flash [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://sixrevisions.com/flashactionscript/flash_tutorial_websites/" target="_self" title="12 Websites To Help You Learn Flash/Action">sixrevisions.com</a></p>
	<p>Adobe Flash is an excellent technology that allows developers to add interactivity and smooth animations to web pages. Its popularity is so immense that you&rsquo;ll find many websites dedicated to helping developers interested in Flash.</p>
	<p>In this article, <strong>you&rsquo;ll find 12 wonderful websites that&rsquo;s  worth a bookmark if you&rsquo;re looking into sharpening your Flash development  skills.</strong> For each entry, you&rsquo;ll find three tutorials from the website so that you can see what&rsquo;s in store for you.</p>
	<h3>1. <a href="http://www.kirupa.com/developer/flash/index.htm">kirupa.com</a></h3>
	<p><a href="http://www.kirupa.com/developer/flash/index.htm"><img width="550" height="200" border="0" alt="kirupa.com - screen shot." src="http://images.sixrevisions.com/2008/07/10-01_kirupa_dot_com.png" /></a></p>
	</p>
	<p><em>kirupa.com</em> is a site that features excellent Flash tutorials (as well as Silverlight, ASP.net, PHP, and Photoshop). There are plenty of well-written, detailed tutorials and articles pertaining to Flash sectioned into seven categories including <em>Basic Drawing</em>, <em>Special Effects</em>, <em>Server-side  Flash</em>, and <em>Game Development</em>.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="javascript:LaunchV2('http://www.kirupa.com/developer/flash8/video/simplePageTransitions.htm')">Simple  Page Transitions</a></li>
	<li><a href="javascript:LaunchV3('http://www.kirupa.com/developer/flash8/video/animatingClouds.htm',700,670)">Creating  and Animating Clouds</a></li>
	<li><a href="javascript:Launch('http://www.kirupa.com/developer/flash8/video/fallingText.htm')">Falling  Text</a></li>
</ul>
	<h3>2. <a title="gotoandlearn.com - Free video tutorials by Lee Brimelow on the Flash Platform" href="http://www.gotoandlearn.com/">gotoandlearn.com</a></h3>
	<p><a href="http://www.gotoandlearn.com/"><img width="550" height="200" border="0" alt="gotoandlearn.com - screen shot." src="http://images.sixrevisions.com/2008/07/10-02_gotoandlearn.png" /></a></p>
	<p>Some people learn best by visualization and following along with the instructor step-by-step in real-time. If you&rsquo;re the type that prefers to learn by watching instructional videos, check out <em>gotoandlearn.com</em>  &ndash; a website by Lee Brimelow that offers free Flash video tutorials.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.gotoandlearn.com/player.php?id=61">ActionScript  3 Sound Basics</a></li>
	<li><a href="http://www.gotoandlearn.com/player.php?id=61">Creating  3D Carousels</a></li>
	<li><a href="http://www.gotoandlearn.com/player.php?id=56">Creating  Flash Tooltips</a></li>
</ul>
	<h3>3. <a href="http://www.gotoandplay.it/">gotoAndPlay()</a></h3>
	<p><a href="http://www.gotoandplay.it/"><img width="550" height="200" border="0" alt="gotoAndPlay() - screen shot." src="http://images.sixrevisions.com/2008/07/10-03_gotoandplay.jpg" /></a></p>
	<p><em>gotoAndPlay()</em> is dedicated to providing resources for Flash game developers. It&rsquo;s a community that has a forum, interviews from professional developers, and reviews of books and resources. It also has tutorials and articles about Flash game development that can be filtered by topic, expertise, and type.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.gotoandplay.it/_articles/2004/10/sshooter.php">Developing a  space shooter game</a></li>
	<li> <a href="http://www.gotoandplay.it/_articles/2007/04/skeletal_animation.php">Skeletal  Animations</a></li>
	<li><a href="http://www.gotoandplay.it/_articles/2004/04/swfProtection.php">How to  protect SWFs from decompilers?</a></li>
</ul>
	<h3>4. <a href="http://www.adobe.com/devnet/flash/">Adobe - Flash  Developer Center</a></h3>
	<p><a href="http://www.adobe.com/devnet/flash/"><img width="550" height="200" border="0" alt="Adobe - Flash Developer Center - screen shot." src="http://images.sixrevisions.com/2008/07/10-04_adobe_flash_center.jpg" /></a></p>
	<p><em>Adobe&rsquo;s Flash   Developer Center</em> is a community for Flash developers. Here, you&rsquo;ll find tutorials, articles, and related resources about Flash. You should also check out the <a href="http://www.adobe.com/devnet/actionscript/">ActionScript Technology Center</a> for articles on specifically about ActionScript.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.adobe.com/designcenter/flash/articles/flacs3it_astimeline.html">Using  ActionScript to pause and loop the timeline in Flash</a></li>
	<li><a href="http://www.adobe.com/designcenter/video_workshop/index.html?id=vid0120">Drawing  with the Pen tool</a></li>
	<li><a href="http://www.adobe.com/designcenter/aftereffects/articles/aft7at_3dflashbutton.html">Creating  a 3D button animation for Flash</a></li>
</ul>
	<h3>5. <a href="http://www.flashkit.com/">Flash Kit</a></h3>
	<p><a href="http://www.flashkit.com/"><img width="550" height="200" border="0" alt="Flash Kit - screen shot." src="http://images.sixrevisions.com/2008/07/10-05_flash_kit.png" /></a></p>
	<p><em>Flash Kit</em> is one of the biggest and oldest community dedicated to Flash development. With over 600,000 members, you won&rsquo;t have a hard time finding people with a similar interest in Flash. There&rsquo;s a forums section, free resources that you can download and use in your Flash projects, and a large tutorials section that includes 18 categories. </p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.flashkit.com/tutorials/Games/Making_m-Ozzy_Gre-1531/index.php">Making  movieclips point at the mouse</a></li>
	<li><a href="http://www.flashkit.com/tutorials/Actionscripting/Move_a_s-Joe_Stei-1529/index.php">Move  a sprite with the keyboard</a></li>
	<li><a href="http://www.flashkit.com/tutorials/Actionscripting/How_to_u-Matthew_-1393/index.php">How  to use hitTest in a simple game</a></li>
</ul>
	<h3>6. <a href="http://www.actionscript.org/">ActionScript.org</a></h3>
	<p><a href="http://www.actionscript.org/"><img width="550" height="200" border="0" alt="ActionScript.org - screen shot." src="http://images.sixrevisions.com/2008/07/10-06_actionscript_dot_org.jpg" /></a></p>
	<p><em>ActionScript.org</em> is a site that provides resources and information pertaining to Flash, Flex, and ActionScript. They have  a fairly active <a href="http://www.actionscript.org/forums/index.php3">Forums  section</a> as well as an <a href="http://www.actionscript.org/actionscripts_library/">ActionScript Library</a> that currently has over 700 objects you can download.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.actionscript.org/resources/articles/792/1/Drawing-Shapes-with-AS3/Page1.html">Drawing  Shapes with AS3</a></li>
	<li><a href="http://www.actionscript.org/resources/articles/760/1/Simple-reflection-effect-with-AS2/Page1.html">Simple  reflection effect with AS2</a></li>
	<li><a href="http://www.actionscript.org/resources/articles/742/1/Physics-in-ActionScript-30/Page1.html">Physics  in ActionScript 3.0</a></li>
</ul>
	<h3>7. <a href="http://www.flashandmath.com/">Flash and Math  ActionScript 3 Tutorials</a></h3>
	<p><a href="http://www.flashandmath.com/"><img width="550" height="200" border="0" alt="Flash and Math ActionScript 3 Tutorials - screen shot" src="http://images.sixrevisions.com/2008/07/10-07_flash_and_math.png" /></a></p>
	<p><em>Flash and Math</em> has a great collection of tutorials on AS3. They cover basic to advanced topics so that Flash developers of any level can find something they can read and learn from. Many of the tutorials include the source files for download.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.flashandmath.com/basic/dragdroptour/index.html">Drag-and-Drop  in Flash CS3</a></li>
	<li><a href="http://www.flashandmath.com/intermediate/tricks/index.html">Tween Tricks  in Flash CS3 and ActionScript 3</a></li>
	<li><a href="http://www.flashandmath.com/advanced/simple3d/index.html">Simple 3D  Drawing in Flash CS3 and ActionScript 3</a></li>
</ul>
	<h3>8. <a href="http://www.pixel2life.com/tutorials/adobe_flash/">Flash  Tutorials on Pixel2Life</a></h3>
	<p><a href="http://www.pixel2life.com/tutorials/adobe_flash/"><img width="550" height="200" border="0" alt="Flash Tutorials on Pixel2Life - screen shot." src="http://images.sixrevisions.com/2008/07/10-08_pixel2life.jpg" /></a></p>
	<p><em>Pixel2Life</em>, according to the site, is the &quot;largest tutorial index catering to graphic designers, webmasters and programmers&quot;. With over 40,000 indexed tutorials, you&rsquo;ll find many links to tutorials in their <a href="http://www.pixel2life.com/tutorials/adobe_flash/">Flash Tutorials</a> section.</p>
	<h4>Indexed tutorial examples:</h4>
	<ul>
<li><a href="http://www.oman3d.com/tutorials/flash/basicwebsite/">Creating a Basic  Flash Website (AS3 Version)</a></li>
	<li><a href="http://flashmymind.com/index.php?view=article&#038;catid=67%3Aactionscript-3-timer-class&#038;id=67%3Aactionscript-3-timer-class&#038;option=com_content&#038;Itemid=67">Actionscript  3 Timer Class</a></li>
	<li><a href="http://www.toxiclab.org/tutorial.asp?ID=234">Stars  animation above the city</a></li>
</ul>
	<h3>9. <a href="http://www.flashperfection.com/">Flash Perfection</a></h3>
	<p><a href="http://www.flashperfection.com/"><img width="550" height="200" border="0" alt="Flash Perfection - screen shot." src="http://images.sixrevisions.com/2008/07/10-09_flashperfection.png" /></a></p>
	<p><em>Flash Perfection</em> is a website with a large collection of Flash tutorials, tips, and tricks from various websites. Flash Perfection has 23 categories to help you find information more quickly.</p>
	<h4>Indexed tutorial examples:</h4>
	<ul>
<li><a href="http://www.flashperfection.com/tutorials/Atmospheric-Steam-90734.html">Atmospheric  Steam</a></li>
	<li><a href="http://www.flashperfection.com/tutorials/Optimizing-your-Flash-SWFs-46691.html">Optimizing  your Flash SWFs</a></li>
	<li><a href="http://www.flashperfection.com/tutorials/Quick-and-Easy-Zoom-Effect-in-Flash-81078.html">Quick  and Easy Zoom Effect in Flash</a></li>
</ul>
	<h3>10. <a href="http://as3.metah.ch/">metah.ch</a></h3>
	<p><a href="http://as3.metah.ch/"><img width="550" height="200" border="0" alt="metah.ch - screen shot." src="http://images.sixrevisions.com/2008/07/10-10_metahch.png" /></a></p>
	<p><em>metah.ch</em> has some awesome video tutorials on Flash, ActionScript, Flex, and AIR. Files associated with the tutorials can be downloaded and used in your own projects.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://as3.metah.ch/video-tutorial.php?flvURL=http://www.metah.ch/as3/video/helloWorld2alpha.flv&#038;flvWidth=640&#038;flvHeight=480">Introduction  to Loop and Event in AS3</a></li>
	<li><a href="http://www.metah.ch/as3/video/interactDB_skin.swf">Connecting AS3 with a  Database</a></li>
	<li><a href="http://www.metah.ch/as3/video/javascriptAs3.swf">Interaction between AS3  and JavaScript</a></li>
</ul>
	<h3>11. <a href="http://lukamaras.com/">LukaMaras.com</a></h3>
	<p><a href="http://lukamaras.com/"><img width="550" height="200" border="0" alt="LukaMaras.com - screen shot." src="http://images.sixrevisions.com/2008/07/10-11_lukasmaras_dot_com.png" /></a></p>
	<p><em>LukaMaras.com</em> offers detailed Flash tutorials and resources  designed to help you learn Flash. There&rsquo;s also a small <a href="http://forum.lukamaras.com/">forums section</a> with over 3,000  registered users where you can discuss anything related to Flash.</p>
	<h4>Tutorial examples:</h4>
	<ol>
<li><a href="http://lukamaras.com/tutorials/menus-interfaces/actionscript-drop-down-menu.php">ActionScript  drop-down menus</a></li>
	<li><a href="http://lukamaras.com/tutorials/menus-interfaces/easy-pixel-buttons.html">How  to make pixel buttons in Flash the easy way.</a></li>
	<li><a href="http://lukamaras.com/tutorials/actionscript/ultimate-dynamic-image-gallery.html">How  to make an amazing dynamic image gallery in Flash 8</a></li>
</ol>
	<h3>12. <a href="http://www.flashmagazine.com/">Flashmagazine</a></h3>
	<p><a href="http://www.flashmagazine.com/"><img width="550" height="200" border="0" alt="Flashmagazine - screen shot." src="http://images.sixrevisions.com/2008/07/10-12_flashmagazine.png" /></a></p>
	<p><em>Flashmagazine</em> is an online magazine dedicated to Flash news,  reviews, information, and resources. The <a href="http://www.flashmagazine.com/tutorials/index/">Tutorials section</a>  has some excellent tutorials for Flash  developers.</p>
	<h4>Tutorial examples:</h4>
	<ul>
<li><a href="http://www.flashmagazine.com/Tutorials/detail/how_to_make_a_custom_as3_preloader/">How  to make a custom AS3 preloader</a></li>
	<li><a href="http://www.flashmagazine.com/Tutorials/detail/as3_photo_gallery/">AS3  Photo gallery</a></li>
	<li><a href="http://www.flashmagazine.com/Tutorials/detail/rollover_effect_using_masks/">Rollover  effect using masks</a></li>
</ul>
	<p>I hope you found this article useful! Since there&rsquo;s so many websites out there dedicated to Flash development, I can&rsquo;t include them all, so <strong>if you didn&rsquo;t see your favorite</strong> &ndash;  please share it with all of us in the comments.</p>
	<p>&nbsp;</p>
<a href="http://sixrevisions.com/flashactionscript/flash_tutorial_websites/" target="_self" title="12 Websites To Help You Learn Flash/Action"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/12-websites-to-help-you-learn-flashactionscript/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Powerful CSS-Techniques For Effective Coding</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/powerful-css-techniques-for-effective-coding/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/powerful-css-techniques-for-effective-coding/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 05:17:07 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>CSS</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/powerful-css-techniques-for-effective-coding/</guid>
		<description><![CDATA[	Ref. smashingmagazine.com
	Sometimes being a web-developer is just damn hard. Particularly coding is often responsible for slowing down our workflow, reducing the quality of our work and sleepless nights with pizza and coffee laying around the laptop. Reason: with a number of incompatibility issues and quite creative rendering engines it sometimes takes too much time to [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a title="Powerful CSS-Techniques For Effective Coding" target="_self" href="http://www.smashingmagazine.com/2008/02/21/powerful-css-techniques-for-effective-coding/">smashingmagazine.com</a></p>
	<p>Sometimes being a web-developer is just damn hard. Particularly <strong>coding</strong> is often responsible for slowing down our workflow, reducing the quality of our work and sleepless nights with pizza and coffee laying around the laptop. Reason: with a number of incompatibility issues and quite creative rendering engines it sometimes takes too much time to find a workaround for some problem without addressing browsers with quirky hacks. And that&rsquo;s where ready-to-use solutions developed by other designers come in handy.</p>
	<p>One year ago we&rsquo;ve published the post with <a href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/">53 CSS-Techniques You Couldn&rsquo;t Live Without</a> where we provided references to the <strong>most useful CSS-techniques</strong> which are often used in almost every project. Over the last year we&rsquo;ve been observing what&rsquo;s happening with the CSS-based web-development, and we collected most useful CSS-techniques we&rsquo;ve stumbled upon &mdash; for us and for our readers.</p>
	<p>In this post we present <strong>50 new CSS-techniques, ideas and ready-to-use solutions for effective coding</strong>. You definitely know some of them, but definitely not all of them. Some technique is missing? Let us know in the comments to this post.</p>
	<p>Thanks to all developers who contributed to the CSS-based design over the last year. The community appreciates it.</p>
	<h3>CSS-Techniques</h3>
	<p>1. <a href="http://silverbackapp.com/">Triadic Background Setting with CSS</a><br />The Silverback web site uses three background images to create the illusion of 3D with simple CSS. No documentation is provided, however the source code is quite intuitive. [via <a href="http://www.wilsonminer.com/">Wilson Miner</a>]</p>
	<p><a href="http://silverbackapp.com/"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css00.png" alt="CSS-Technique" /></a></p>
	<p>2. <a href="http://www.digital-web.com/articles/web_standards_creativity_png/">Creative Use of PNG Transparency in Web Design</a><br />With proper PNG support in Internet Explorer 7, and some handy JavaScript and CSS tricks to account for older browsers, we can use PNG images to greatly enhance our design vocabulary.</p>
	<p><a href="http://www.digital-web.com/articles/web_standards_creativity_png/"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css02.png" alt="CSS-Technique" /></a></p>
	<p>3. <a href="http://www.shauninman.com/archive/2007/06/27/css_server_side_pre_processor">CSS Server-Side Pre-Processor</a></p>
	<p><a href="http://www.shauninman.com/archive/2007/06/27/css_server_side_pre_processor"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css03.png" alt="CSS-Technique" /></a></p>
	<p>4. <a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/">Advanced CSS Menu</a></p>
	<p><a href="http://www.webdesignerwall.com/tutorials/advanced-css-menu/"><img width="485" height="170" border="0" alt="CSS-techniques - Advanced CSS Menu" src="http://88.198.60.17/images/50-css-techniques/css32.png" /></a></p>
	<p>5. <a href="http://wordpress.betech.virginia.edu/index.php/2007/10/03/css-sitemap/">CSS SiteMap</a></p>
	<p><a href="http://wordpress.betech.virginia.edu/index.php/2007/10/03/css-sitemap/"><img width="485" height="170" border="0" alt="CSS-techniques - beTech » CSS SiteMap » Oct 3, 2007" src="http://88.198.60.17/images/50-css-techniques/css42.png" /></a></p>
	<p>6. <a href="http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom">Styling File Inputs with CSS and the DOM</a><br />File inputs (&lt;input type=&rdquo;file&rdquo; /&gt;) are the bane of beautiful form design. No rendering engine provides the granular control over their presentation designers desire. This simple, three-part progressive enhancement provides the markup, CSS, and JavaScript to address the long-standing irritation.</p>
	<p><a href="http://www.shauninman.com/archive/2007/09/10/styling_file_inputs_with_css_and_the_dom"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css01.png" alt="CSS-Technique" /></a></p>
	<p>7. <a href="http://powazek.com/posts/867">A Savvy Approach to Copyright Messaging</a><br />Derek Powazek suggests adding a copyright message to a photo and use CSS to crop its view. This is supposed to accomplish the goal of adding robust copyright information without defacing your own work. </p>
	<p><a href="http://powazek.com/posts/867"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css50.png" alt="Screenshot" /></a></p>
	<p>8. <a href="http://particletree.com/2007/10/">Particletree Category List</a></p>
	<p><a href="http://particletree.com/2007/10/"><img width="485" height="170" border="0" alt="CSS-techniques - Particletree » Automatically Version Your CSS and JavaScript Files" src="http://88.198.60.17/images/50-css-techniques/css21.png" /></a></p>
	<p>9. <a href="http://www.3point7designs.com/blog/2007/12/22/advanced-css-menu-trick/">Advanced CSS Menu Trick</a><br />What we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well.</p>
	<p><a href="http://www.3point7designs.com/blog/2007/12/22/advanced-css-menu-trick/"><img width="491" height="176" border="0" src="http://88.198.60.17/images/50-css-techniques/css60.png" alt="Screenshot" /></a></p>
	<p>10. <a href="http://veerle.duoh.com/blog/comments/css_hover_effect/">CSS hover effect</a></p>
	<p><a href="http://veerle.duoh.com/blog/comments/css_hover_effect/"><img width="485" height="170" border="0" alt="CSS-techniques - CSS hover effect | Veerle's blog" src="http://88.198.60.17/images/50-css-techniques/css47.png" /></a></p>
	<p>11. <a href="http://www.askthecssguy.com/2007/08/creating_a_table_with_dynamica.html">Creating a table with dynamically highlighted columns like Crazy Egg&rsquo;s pricing table</a></p>
	<p><a href="http://www.askthecssguy.com/2007/08/creating_a_table_with_dynamica.html"><img width="485" height="170" border="0" alt="CSS-techniques - Creating a table with dynamically highlighted columns like Crazy Egg's pricing table" src="http://88.198.60.17/images/50-css-techniques/css43.png" /></a></p>
	<p>12. <a href="http://www.wpdfd.com/issues/82/list_style_inspiration/">A Stripe of List Style Inspiration</a><br />A different type of list and navbar styling. As stripes.</p>
	<p><a href="http://www.wpdfd.com/issues/82/list_style_inspiration/" title="CSS List Style"><img width="400" height="204" border="0" src="http://www.smashingmagazine.com/images/best-of-08-2007/list-style.png" alt="CSS List Style" /></a></p>
	<p>13. <a href="http://particletree.com/features/rediscovering-the-button-element/">Rediscovering the Button Element</a></p>
	<p><a href="http://particletree.com/features/rediscovering-the-button-element/"><img width="491" height="176" border="0" alt="CSS-techniques - Particletree » Rediscovering the Button Element" src="http://88.198.60.17/images/50-css-techniques/css54.png" /></a></p>
	<p>14. <a href="http://nubyonrails.com/articles/dynamic-css">Dynamic CSS With Variables</a><br />Geoffrey Grosenbach describes how you can integrate CSS variables in CSS coding &mdash; with Ruby on Rails.</p>
	<p><a href="http://nubyonrails.com/articles/dynamic-css"><img width="399" height="219" border="0" src="http://www.smashingmagazine.com/images/best-of-september07/dynamic-css.png" alt="Dynamic CSS" /></a></p>
	<p>15. <a href="http://www.askthecssguy.com/2006/12/hyperlink_cues_with_favicons.html">Hyperlink Cues with Favicons</a><br />I wanted to extend the concept of hyperlink cues a little. For links that point to external sites, what if, instead of showing a generic &lsquo;external link&rsquo; icon, we showed that site&rsquo;s favicon?</p>
	<p><a href="http://www.askthecssguy.com/2006/12/hyperlink_cues_with_favicons.html"><img width="485" height="170" border="0" alt="CSS-techniques - Drop Shadow CSS" src="http://88.198.60.17/images/50-css-techniques/css62.png" /></a></p>
	<p>16. <a href="http://veerle.duoh.com/blog/comments/a_css_styled_table_version_2/">A CSS styled table version 2</a></p>
	<p><a href="http://veerle.duoh.com/blog/comments/a_css_styled_table_version_2/"><img width="485" height="170" border="0" alt="CSS-techniques - A CSS styled table version 2 | Veerle's blog" src="http://88.198.60.17/images/50-css-techniques/css46.png" /></a></p>
	<p>17. <a href="http://codylindley.com/CSS/325/css-step-menu">CSS Step Menu</a><br />A method of designing the so-called <a href="http://time-tripper.com/uipatterns/Step-by-Step_Instructions">step-menus</a>, which have some steps users have to go through in order to achieve some aim. This menu offers a varying amount of steps, dependent upon the type of user accessing the application.</p>
	<p><a href="http://codylindley.com/CSS/325/css-step-menu"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css52.png" alt="Stepmenu" title="Stepmenu" /></a></p>
	<p>18. <a href="http://www.456bereastreet.com/archive/200705/creating_bulletproof_graphic_link_buttons_with_css/">Creating bulletproof graphic link buttons with CSS | 456 Berea Street</a></p>
	<p><a href="http://www.456bereastreet.com/archive/200705/creating_bulletproof_graphic_link_buttons_with_css/"><img width="485" height="170" border="0" alt="CSS-techniques - Creating bulletproof graphic link buttons with CSS | 456 Berea Street" src="http://88.198.60.17/images/50-css-techniques/css19.png" /></a></p>
	<p>19. <a href="http://pooliestudios.com/projects/iconize/">Iconize Textlinks with CSS</a><br />Links are fun, but sometimes we don&rsquo;t know where they take us. With this little CSS technique a user can identify a link by its icon. The updated release of the technique. </p>
	<p><a href="http://pooliestudios.com/projects/iconize/"><img width="491" height="176" border="0" src="http://88.198.60.17/images/50-css-techniques/css56.png" alt="Screenshot" /></a></p>
	<p>20. <a href="http://css-tricks.com/better-ordered-lists-using-simple-php-and-css/">Better Ordered Lists (Using Simple PHP and CSS)</a><br />Ordered lists are boring! Sure you can apply background images and do quite a bit of sprucing up to a regular ordered list, but you just don&rsquo;t get enough control over the number itself. </p>
	<p><a href="http://css-tricks.com/better-ordered-lists-using-simple-php-and-css/"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css51.png" alt="Screenshot" /></a></p>
	<p>21. <a href="http://metalize.liveonstyle.com/2007/03/22/menu-circular-en-css/">Circular Menu with CSS</a><br />This article shows how a beautiful circular navigation menu is created. In Spanish with <a href="http://metalize.liveonstyle.com/2007/03/22/menu-circular-en-css/3/">Source code</a> and an <a href="http://metalize.liveonstyle.com/wp-content/uploads/2007/03/index.html">example</a>.</p>
	<p><a href="http://metalize.liveonstyle.com/2007/03/22/menu-circular-en-css/"><img width="467" height="145" border="0" src="http://www.smashingmagazine.com/images/best-of-03-2007/march-10.jpg" alt="Circular Menu with CSS" /></a></p>
	<p>22. <a href="http://www.ndesign-studio.com/blog/mac/css-dock-menu">CSS Dock Menu</a></p>
	<p><a href="http://www.ndesign-studio.com/blog/mac/css-dock-menu"><img width="485" height="170" border="0" alt="CSS-techniques - CSS Dock Menu" src="http://88.198.60.17/images/50-css-techniques/css48.png" /></a></p>
	<p>23. <a href="http://woork.blogspot.com/2008/01/digg-like-navigation-bar-using-css.html">Digg-like navigation bar using CSS</a><br />This tutorial explains how to design a digg-like navigation bar using a liquid design with rounded corners for links.</p>
	<p><a href="http://woork.blogspot.com/2008/01/digg-like-navigation-bar-using-css.html"><img width="395" height="70" border="0" src="http://88.198.60.17/images/best-of-january08/digg.png" alt="Screenshot" /></a></p>
	<p>24. <a href="http://www.noupe.com/ajax/13-awesome-java-script-css-menu.html">13 Awesome Javascript CSS Menus</a><br />13 &ldquo;fresh&rdquo; JavaScript+CSS-based navigation menus in a brief overview. Among other things <a href="http://www.dynamicdrive.com/dynamicindex1/slashdot.htm">Slashdot Menu</a> and <a href="http://www.andrewsellick.com/35/sexy-sliding-javascript-side-bar-menu-using-mootools">Sexy Sliding Menu</a> displayed below.</p>
	<p><a href="http://www.noupe.com/ajax/13-awesome-java-script-css-menu.html"><img width="416" height="171" border="0" src="http://www.smashingmagazine.com/images/best-of-october07/menu1.gif" alt="CSS Menu" /></a></p>
	<p>25. <a href="http://www.askthecssguy.com/2007/09/sangeeta_asks_the_css_guy_how_1.html">CSS Pricing Matrix</a><br />A CSS-based matrix in which clicking on a highlights the associated cell in the top row and left column giving an indication of relationships among the provided information. Similar solution: <a href="http://cssglobe.com/lab/tablecloth/">Tablecloth</a>.</p>
	<p><a href="http://www.askthecssguy.com/2007/09/sangeeta_asks_the_css_guy_how_1.html"><img width="438" height="156" border="0" src="http://www.smashingmagazine.com/images/best-of-september07/csspricingmatrix.png" alt="CSS Pricing Matrix" /></a></p>
	<p>26. <a href="http://cssglobe.com/post.asp?id=940">CSS List Expander</a><br />So, we have an unordered list that can go on in depth as much as we want. The script analyzes the list tree and applies toggle functions for expanding/collapsing child objects.</p>
	<p><a href="http://cssglobe.com/post.asp?id=940"><img width="491" height="176" border="0" src="http://88.198.60.17/images/50-css-techniques/css57.png" alt="List Expander" /></a></p>
	<p>27. <a href="http://blog.itookia.com/post/How-to-create-VISTA-style-toolbar-with-CSS.aspx">How to create VISTA style toolbar with CSS</a><br />Reproducing Vista toolbar, with buttons and hover effect in cross-browser compatible CSS and (X)HTML.</p>
	<p><a href="http://blog.itookia.com/post/How-to-create-VISTA-style-toolbar-with-CSS.aspx" title="CSS Vista Toolbar"><img width="500" height="188" border="0" src="http://www.smashingmagazine.com/images/best-of-08-2007/vista.png" alt="Vista CSS Toolbar" /></a></p>
	<p>28. <a href="http://css-tricks.com/examples/FadeOutBottom/">Fade Out Bottom</a><br />This is a demonstration of the effect where the bottom of the page seems to fade out. The technique makes use of an fixed position div (bottom: 0%) with a transparent PNG image and a high z-index value.</p>
	<p><a href="http://css-tricks.com/examples/FadeOutBottom/"><img width="491" height="176" border="0" alt="CSS-techniques - Fade Out Bottom" src="http://88.198.60.17/images/50-css-techniques/css59.png" /></a></p>
	<p>29. <a href="http://www.scrollovers.com/">Scrollovers - A New Way of Linking</a><br />Everyone is familiar with hover-effects. This CSS+JavaScript-based techniques creates the Scrolleffect - not really necessary, but it&rsquo;s nice to know, how it can be done.</p>
	<p><a href="http://www.scrollovers.com/"><img width="491" height="176" border="0" src="http://88.198.60.17/images/50-css-techniques/css58.png" alt="Scrollovers" title="Scrollovers" /></a> </p>
	<p>30. <a href="http://www.smileycat.com/miaow/archives/000211.php">How to Style an A to Z Index with CSS</a></p>
	<p><a href="http://www.smileycat.com/miaow/archives/000211.php"><img width="485" height="170" border="0" alt="CSS-techniques - How to Style an A to Z Index with CSS | Smiley Cat Web Design" src="http://88.198.60.17/images/50-css-techniques/css35.png" /></a></p>
	<p>31. <a href="http://mikecherim.com/gbcms_xml/news_page.php?id=24#n24">CSS List Boxes</a><br />Using a simple unordered list this experiment aligns the boxes across the page with the end result being to showcase items like services, products, or specials. One of cool thing about this &mdash; if you turn off styles &mdash; is the extractable semantics with the headings and paragraphs used.</p>
	<p><a href="http://mikecherim.com/gbcms_xml/news_page.php?id=24#n24"><img width="500" height="113" border="0" src="http://www.smashingmagazine.com/images/digest-july/listboxes.jpg" alt="List Boxes" title="Lists Boxes" /></a> </p>
	<p>32. <a href="http://5thirtyone.com/archives/776">How-to create a &ldquo;Table of Contents&rdquo; Navigation</a><br />In as little as 8 lines of HTML, and 5 lines of CSS, the Table Of Contents Navigation block can be integrated in your site ready for even more styling.</p>
	<p><a href="http://5thirtyone.com/archives/776"><img width="428" height="120" border="0" src="http://www.smashingmagazine.com/images/best-of-may-june/toc.gif" alt="Table of Contents" title="Table of Contents" /></a></p>
	<p>33. <a href="http://www.search-this.com/2007/11/26/css-a-recipe-for-success/">CSS Recipe for Success</a></p>
	<p><a href="http://www.search-this.com/2007/11/26/css-a-recipe-for-success/"><img width="485" height="170" border="0" alt="CSS-techniques - CSS - A Recipe for Success" src="http://88.198.60.17/images/50-css-techniques/css12.png" /></a></p>
	<p>34. <a href="http://www.cssplay.co.uk/opacity/png.html">Partial Opacity</a></p>
	<p><a href="http://www.cssplay.co.uk/opacity/png.html"><img width="485" height="170" border="0" alt="CSS-techniques - Stu Nicholls | CSSplay | Partial Opacity" src="http://88.198.60.17/images/50-css-techniques/css33.png" /></a></p>
	<p>35. <a href="http://www.hedgerwow.com/360/dhtml/css-round-button/demo.php">Simple Round CSS Links (Wii Buttons)</a></p>
	<p><a href="http://www.hedgerwow.com/360/dhtml/css-round-button/demo.php"><img width="485" height="170" border="0" alt="CSS-techniques - Simple Round CSS Links ( Wii Buttons )" src="http://88.198.60.17/images/50-css-techniques/css25.png" /></a></p>
	<p>36. <a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html">How to make sexy buttons with CSS</a></p>
	<p><a href="http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html"><img width="485" height="170" border="0" alt="CSS-techniques - How to make sexy buttons with CSS" src="http://88.198.60.17/images/50-css-techniques/css26.png" /></a></p>
	<p>37. <a href="http://www.designmeme.com/articles/csspullquotes/">CSS Pull Quotes</a></p>
	<p><a href="http://www.designmeme.com/articles/csspullquotes/"><img width="485" height="170" border="0" alt="CSS-techniques - CSS Pull Quotes | Design Meme" src="http://88.198.60.17/images/50-css-techniques/css36.png" /></a></p>
	<p>38. <a href="http://www.phoenity.com/newtedge/drop_shadow/">Drop Shadow CSS</a></p>
	<p><a href="http://www.phoenity.com/newtedge/drop_shadow/"><img width="491" height="176" border="0" alt="CSS-techniques - Drop Shadow CSS" src="http://88.198.60.17/images/50-css-techniques/css55.png" /></a></p>
	<p>39. <a href="http://www.willmayo.com/2007/02/10/css-speech-bubbles/">CSS Speech Bubbles</a><br />Easy to customize speech bubbles coded in CSS and valid XHTML 1.0 strict.Tested in all major browsers.</p>
	<p><a href="http://www.willmayo.com/2007/02/10/css-speech-bubbles/"><img width="485" height="170" border="0" src="http://www.smashingmagazine.com/images/digest/february-07/best-of-february-03.png" alt="Screenshot" /></a></p>
	<p>40. <a href="http://mikecherim.com/experiments/css_double_lists.php">CSS Double Lists</a></p>
	<p><a href="http://mikecherim.com/experiments/css_double_lists.php"><img width="485" height="170" border="0" alt="CSS-techniques - CSS: Double Lists | Mike’s Experiments | MikeCherim.com" src="http://88.198.60.17/images/50-css-techniques/css37.png" /></a></p>
	<p>41. <a href="http://mikecherim.com/gbcms_xml/news_page.php?id=30#n30">Perspective Text with CSS</a></p>
	<p><a href="http://mikecherim.com/gbcms_xml/news_page.php?id=30#n30"><img width="485" height="170" border="0" alt="CSS-techniques - Mike’s Experiments: Archives Page | A Record of My Madness | Powered by the GreenBeast CMS RSS Newsmaker - -" src="http://88.198.60.17/images/50-css-techniques/css38.png" /></a></p>
	<p>42. <a href="http://css-tricks.com/better-email-links-featuring-css-attribute-selectors/">Better Email Links: Featuring CSS Attribute Selectors</a><br />Learn how to generate code for displaying the e-mail automatically once mailto is used. CSS Attribute Selectors in action which is not supported by Internet Explorer 6 and 7.</p>
	<p><a href="http://css-tricks.com/better-email-links-featuring-css-attribute-selectors/"><img width="450" height="87" border="0" src="http://88.198.60.17/images/best-of-january08/bel.png" alt="Screenshot" /></a></p>
	<p>43. <a href="http://mikecherim.com/experiments/css_menu_descriptions.php#">CSS: Menu Descriptions</a><br />This is a CSS technique that could be useful if you want to give users accessible added content such as tool-tips, notifications, or alerts, without adding unnecessary clutter to your page. And since it doesn&rsquo;t rely of JavaScript, it should be useful to everyone, even disabled users.</p>
	<p><a href="http://mikecherim.com/experiments/css_menu_descriptions.php"><img width="485" height="170" border="0" src="http://88.198.60.17/images/50-css-techniques/css61.png" alt="Screenshot" /></a></p>
	<h3>Further Techniques</h3>
	<p>44. <a href="http://css-tricks.com/css-transparency-settings-for-all-broswers/">CSS Transparency Settings for All Browsers</a></p>
	<p><a href="http://css-tricks.com/css-transparency-settings-for-all-broswers/"><img width="485" height="170" border="0" alt="CSS-techniques - CSS Transparency Settings for All Browsers" src="http://88.198.60.17/images/50-css-techniques/css11.png" /></a></p>
	<p>45. <a href="http://www.katgal.com/2007/03/time-sensitive-css-switcher-change.html">Time Sensitive CSS Switcher</a><br />CSS Switching script that changes style sheet based on time of day.</p>
	<p>46. <a href="http://www.devlounge.net/articles/custom-reading-containers">Custom Reading Containers</a><br />This amazing little script allows the user to resize any container.</p>
	<p>47. <a href="http://meyerweb.com/eric/tools/css/reset/">Eric Meyer&rsquo;s CSS Reset</a></p>
	<p><a href="http://meyerweb.com/eric/tools/css/reset/"><img width="485" height="170" border="0" alt="CSS-techniques - CSS Tools: Reset CSS" src="http://88.198.60.17/images/50-css-techniques/css27.png" /></a></p>
	<p>48. <a href="http://sonspring.com/journal/png-overlay">PNG Overlay</a><br />Create a transparent PNG overlay which can be used as a mask / frame around regular JPEG or GIF so users can upload photos without having to worry about using any graphics program to apply filters, plus it saves time.</p>
	<p>49. <a href="http://odyniec.net/articles/turning-lists-into-trees/">Turning Lists into Trees</a></p>
	<p><a href="http://odyniec.net/articles/turning-lists-into-trees/"><img width="485" height="170" border="0" alt="CSS-techniques - odyniec.net" src="http://88.198.60.17/images/50-css-techniques/css29.png" /></a></p>
	<p>50. <a href="http://www.smileycat.com/miaow/archives/000648.php">Create Resizable Images With CSS</a></p>
	<p><a href="http://www.smileycat.com/miaow/archives/000648.php"><img width="485" height="170" border="0" alt="CSS-techniques - Create Resizable Images With CSS | Smiley Cat Web Design" src="http://88.198.60.17/images/50-css-techniques/css40.png" /></a></p>
	<p>&nbsp;</p>
<a title="Powerful CSS-Techniques For Effective Coding" target="_self" href="http://www.smashingmagazine.com/2008/02/21/powerful-css-techniques-for-effective-coding/"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/powerful-css-techniques-for-effective-coding/feed/</wfw:commentRss>
	</item>
		<item>
		<title>40 Tips for optimizing your php code</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/40-tips-for-optimizing-your-php-code/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/40-tips-for-optimizing-your-php-code/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 05:07:21 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>PHP</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/40-tips-for-optimizing-your-php-code/</guid>
		<description><![CDATA[	Ref. reinholdweber.com
	
If a method can be static, declare it static. Speed improvement is by a factor of 4.
	echo is faster than print.

Use echo&#8217;s multiple parameters instead of string concatenation.

Set the maxvalue for your for-loops before and not in the loop.

Unset your variables to free memory, especially large arrays.

Avoid magic like __get, __set, __autoload

require_once() is expensive

Use [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://reinholdweber.com/?p=3" target="_self" title="40 Tips for optimizing your php code">reinholdweber.com</a></p>
	<ol>
<li>If a method can be static, declare it static. Speed improvement is by a factor of 4.</li>
	<li><em>echo</em> is faster than <em>print</em>.</li>

<li>Use echo&#8217;s multiple parameters instead of string concatenation.</li>

<li>Set the maxvalue for your for-loops before and not in the loop.</li>

<li>Unset your variables to free memory, especially large arrays.</li>

<li>Avoid magic like __get, __set, __autoload</li>

<li>require_once() is expensive</li>

<li>Use full paths in includes and requires, less time spent on resolving the OS paths.</li>

<li>If you need to find out the time when the script started executing, $_SERVER[&rsquo;REQUEST_TIME&rsquo;] is preferred to time()</li>
	<li>See if you can use strncasecmp, strpbrk and stripos instead of regex</li>

<li>str_replace is faster than preg_replace, but strtr is faster than str_replace by a factor of 4</li>

<li>If the function, such as string replacement function, accepts both arrays and single characters as arguments, and if your argument list is not too long, consider writing a few redundant replacement statements, passing one character at a time, instead of one line of code that accepts arrays as search and replace arguments.</li>

<li>It&#8217;s better to use switch statements than multi if, else if, statements.</li>

<li>Error suppression with @ is very slow.</li>

<li>Turn on apache&#8217;s mod_deflate</li>

<li>Close your database connections when you&#8217;re done with them</li>

<li>$row[&rsquo;id&rsquo;] is 7 times faster than $row[id]</li>

<li>Error messages are expensive</li>

<li>Do not use functions inside of for loop, such as for ($x=0; $x &lt; count($array); $x) The count() function gets called each time.</li>

<li>Incrementing a local variable in a method is the fastest. Nearly the same as calling a local variable in a function.</li>
	<li>Incrementing a global variable is 2 times slow than a local var.</li>

<li>Incrementing an object property (eg. $this-&gt;prop++) is 3 times slower than a local variable.</li>

<li>Incrementing an undefined local variable is 9-10 times slower than a pre-initialized one.</li>

<li>Just declaring a global variable without using it in a function also slows things down (by about the same amount as incrementing a local var). PHP probably does a check to see if the global exists.</li>

<li>Method invocation appears to be independent of the number of methods defined in the class because I added 10 more methods to the test class (before and after the test method) with no change in performance.</li>

<li>Methods in derived classes run faster than ones defined in the base class.</li>

<li>A function call with one parameter and an empty function body takes about the same time as doing 7-8 $localvar++ operations. A similar method call is of course about 15 $localvar++ operations.</li>

<li>Surrounding your string by &#8216; instead of &quot; will make things interpret a little faster since php looks for variables inside &quot;&#8230;&quot; but not inside &#8216;&#8230;&#8217;. Of course you can only do this when you don&#8217;t need to have variables in the string.</li>
	<li>When echoing strings it&#8217;s faster to separate them by comma instead of dot. Note: This only works with echo, which is a function that can take several strings as arguments. </li>

<li>A PHP script will be served at least 2-10 times slower than a static HTML page by Apache. Try to use more static HTML pages and fewer scripts.</li>

<li>Your PHP scripts are recompiled every time unless the scripts are cached. Install a PHP caching product to typically increase performance by 25-100% by removing compile times.</li>

<li>Cache as much as possible. Use memcached - memcached is a high-performance memory object caching system intended to speed up dynamic web applications by alleviating database load. OP code caches are useful so that your script does not have to be compiled on every request</li>

<li>When working with strings and you need to check that the string is either of a certain length you&#8217;d understandably would want to use the strlen() function. This function is pretty quick since it&#8217;s operation does not perform any calculation but merely return the already known length of a string available in the zval structure (internal C struct used to store variables in PHP). However because strlen() is a function it is still somewhat slow because the function call requires several operations such as lowercase &amp; hashtable lookup followed by the execution of said function. In some instance you can improve the speed of your code by using an isset() trick.</p>
	<p> Ex. </p>
	<p> if (strlen($foo) &lt; 5) { echo &quot;Foo is too short&quot;; }</p>
	<p> vs.</p>
	<p> if (!isset($foo{5})) { echo &quot;Foo is too short&quot;; }</p>
	<p> Calling isset() happens to be faster then strlen() because unlike strlen(), isset() is a language construct and not a function meaning that it&#8217;s execution does not require function lookups and lowercase. This means you have virtually no overhead on top of the actual code that determines the string&#8217;s length.</li>
	<li>When incrementing or decrementing the value of the variable $i++ happens to be a tad slower then ++$i. This is something PHP specific and does not apply to other languages, so don&#8217;t go modifying your C or Java code thinking it&#8217;ll suddenly become faster, it won&#8217;t. ++$i happens to be faster in PHP because instead of 4 opcodes used for $i++ you only need 3. Post incrementation actually causes in the creation of a temporary var that is then incremented. While pre-incrementation increases the original value directly. This is one of the optimization that opcode optimized like Zend&#8217;s PHP optimizer. It is a still a good idea to keep in mind since not all opcode optimizers perform this optimization and there are plenty of ISPs and servers running without an opcode optimizer.</li>

<li>Not everything has to be OOP, often it is too much overhead, each method and object call consumes a lot of memory. </li>

<li>Do not implement every data structure as a class, arrays are useful, too</li>

<li>Don&#8217;t split methods too much, think, which code you will really re-use</li>

<li>You can always split the code of a method later, when needed</li>

<li>Make use of the countless predefined functions</li>

<li>If you have very time consuming functions in your code, consider writing them as C extensions</li>

<li>Profile your code. A profiler shows you, which parts of your code consumes how many time. The Xdebug debugger already contains a profiler. Profiling shows you the bottlenecks in overview</li>

<li>mod_gzip which is available as an Apache module compresses your data on the fly and can reduce the data to transfer up to 80%</li>

<li><a target="_blank" href="http://phplens.com/lens/php-book/optimizing-debugging-php.php">Excellent Article</a> about optimizing php by John Lim</li>
</ol>
	<p>&nbsp;</p>
<a href="http://reinholdweber.com/?p=3" target="_self" title="40 Tips for optimizing your php code"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/40-tips-for-optimizing-your-php-code/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Use the YouTube API with PHP</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/fadf/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/fadf/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 02:45:27 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>PHP</category>
	<category>Youtube API</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/fadf/</guid>
		<description><![CDATA[	Ref. www.ibm.com
	Process and integrate data from YouTube into your PHP application with PHP&#8217;s          SimpleXML extension
]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a title="Use the YouTube API with PHP" target="_self" href="http://www.ibm.com/developerworks/library/x-youtubeapi/index.html?ca=drs-">www.ibm.com</a></p>
	<p><em>Process and integrate data from YouTube into your PHP application with PHP&#8217;s          SimpleXML extension</em></p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/fadf/feed/</wfw:commentRss>
	</item>
		<item>
		<title>Full WEB 2.0 API List</title>
		<link>http://bestsolution.blogsome.com/2008/07/12/full-web-20-api-list/</link>
		<comments>http://bestsolution.blogsome.com/2008/07/12/full-web-20-api-list/#comments</comments>
		<pubDate>Sat, 12 Jul 2008 02:35:10 +0000</pubDate>
		<dc:creator>Administrator</dc:creator>
		
	<category>Resources</category>
		<guid>http://bestsolution.blogsome.com/2008/07/12/full-web-20-api-list/</guid>
		<description><![CDATA[	Ref. techmagazine.ws
	Advertising
	

Google AdSense
	Advertising management
 
	
Google AdWords
	Search advertising
 
	
Microsoft adCenter
	Online advertising services
 
	
UrlTrends
	Link tracking and search optimization
 
	
Wordtracker
	Search engine optimization services
 
	
Yahoo Ads
	Online ad management
 
	
Yahoo Search Marketing
	Search advertising platform
 
	
Answerbag
	Questions and answers service
 
	
Blogwise
	Blog and feed search service
 
	
SplogSpot
	Database of spam blogs
 
  
	
	Blog Search
	

Blogwise
	Blog and feed search service
 
	
SplogSpot
	Database of spam blogs
 
	
Tailrank
	Blog [...]]]></description>
			<content:encoded><![CDATA[	<p>Ref. <a href="http://techmagazine.ws/full-web-20-api-list/" target="_self" title="Full WEB 2.0 API List">techmagazine.ws</a></p>
	<h2>Advertising</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/adsense/">Google AdSense</a></td>
	<td width="267">Advertising management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.google.com/apis/adwords/">Google AdWords</a></td>
	<td width="267">Search advertising</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://msdn2.microsoft.com/en-us/library/aa983013.aspx">Microsoft adCenter</a></td>
	<td width="267">Online advertising services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.urltrends.com/apidocs/">UrlTrends</a></td>
	<td width="267">Link tracking and search optimization</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.wordtracker.com/docs/api/">Wordtracker</a></td>
	<td width="267">Search engine optimization services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://searchmarketing.yahoo.com/af/yws.php">Yahoo Ads</a></td>
	<td width="267">Online ad management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://searchmarketing.yahoo.com/api/">Yahoo Search Marketing</a></td>
	<td width="267">Search advertising platform</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.answerbag.com/docs/xmlschema/">Answerbag</a></td>
	<td width="267">Questions and answers service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.blogwise.com/api/">Blogwise</a></td>
	<td width="267">Blog and feed search service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://splogspot.com/pages/api_help">SplogSpot</a></td>
	<td width="267">Database of spam blogs</td>
 </tr>
  </table>
	</p>
	<h2>Blog Search</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.blogwise.com/api/">Blogwise</a></td>
	<td width="267">Blog and feed search service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://splogspot.com/pages/api_help">SplogSpot</a></td>
	<td width="267">Database of spam blogs</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://tailrank.com/api">Tailrank</a></td>
	<td width="267">Blog search and news aggregation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://technorati.com/developers/">Technorati</a></td>
	<td width="267">Blog search services</td>
 </tr>
  </table>
	<h2>Blogging</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://akismet.com/development/api/">Akismet</a></td>
	<td width="267">Blog spam prevention service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/gdata/blogger.html">Blogger</a></td>
	<td width="267">Blogging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://feedblitz.blogspot.com/2006/10/feedblitz-api.html">FeedBlitz</a></td>
	<td width="267">Blogs by email service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.feedburner.com/fb/a/developers">FeedBurner</a></td>
	<td width="267">Blog promotion tracking service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.livejournal.com/developer/">LiveJournal</a></td>
	<td width="267">Blogging software</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://performancing.com/metrics/handbook/api">Performancing</a></td>
	<td width="267">Blog management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.sixapart.com/pronet/docs/typepad_atom_api">TypePad</a></td>
	<td width="267">Blog management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://weblogs.com/api.html">Weblogs</a></td>
	<td width="267">Blog ping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.live.com/spaces/">Windows Live Spaces</a></td>
	<td width="267">Blog services</td>
 </tr>
  </table>
	<h2>Bookmarks</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://dev.blogmarks.net/wiki/DeveloperDocs">Blogmarks</a></td>
	<td width="267">Social bookmarking</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://del.icio.us/doc/api">del.icio.us</a></td>
	<td width="267">Social bookmarking</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.linkagogo.com/rest_api.html">linkaGoGo</a></td>
	<td width="267">Social bookmarking service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://ma.gnolia.com/support/api">Ma.gnolia</a></td>
	<td width="267">Social bookmarking service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.onlywire.com/index?api">OnlyWire</a></td>
	<td width="267">Social bookmarklet service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.shadows.com/features/site/help/api.htm">Shadows</a></td>
	<td width="267">Social bookmarking and community</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.simpy.com/doc/api/rest">Simpy</a></td>
	<td width="267">Social bookmarking</td>
 </tr>
  </table>
	<h2>Calendar</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://30boxes.com/api/">30 Boxes</a></td>
	<td width="267">Calendar service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/gdata/calendar.html">Google Calendar</a></td>
	<td width="267">Calendar service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://spongecell.com/api_info">Spongecell</a></td>
	<td width="267">Online calendar service</td>
 </tr>
  </table>
	<h2>Chat</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://developer.aim.com/plugin">AOL Instant Messenger</a></td>
	<td width="267">Instant messaging chat service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.aim.com/presenceMain.jsp">AOL Presence</a></td>
	<td width="267">Online presence service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.google.com/talk/developer.html">Google Talk</a></td>
	<td width="267">Chat application</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.imified.com/api/">IMified</a></td>
	<td width="267">Instant messenger buddy</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://wiki.lingr.com/dev/">Lingr</a></td>
	<td width="267">Online chatroom services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.live.com/messenger/">MSN Messenger</a></td>
	<td width="267">Chat and messaging</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.aim.com/webaim/">WebAIM</a></td>
	<td width="267">Web based instant messaging</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/messenger/">Yahoo Messenger</a></td>
	<td width="267">Instant messaging</td>
 </tr>
  </table>
	<h2>Community</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://bluedot.us/Developers.aspx">Blue Dot</a></td>
	<td width="267">Content sharing community</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.corank.com/api.html">coRank</a></td>
	<td width="267">Distributed user reviews service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developers.facebook.com/">Facebook</a></td>
	<td width="267">Social networking service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=240">PartySpark</a></td>
	<td width="267">Social events service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.rockyou.com/corp/facebook/dev.php">RockYou Super Wall</a></td>
	<td width="267">Content sharing platform within Facebook</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://twitter.com/help/api">Twitter</a></td>
	<td width="267">Community site</td>
 </tr>
  </table>
	<h2>Email</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=167">Email Address Validator</a></td>
	<td width="267">Email address validation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.exacttarget.com/">ExactTarget</a></td>
	<td width="267">Email delivery services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://app.intellicontact.com/icp/pub/api/doc/api.html">IntelliContact</a></td>
	<td width="267">Email marketing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.jangomail.com/database_api.asp">JangoMail</a></td>
	<td width="267">Bulk email service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.mailbuild.com/api/">Mailbuild</a></td>
	<td width="267">Email forms and templates service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.blueskyfactory.com/blog/2007/07/did-you-know-that-publicaster-offers.html">Publicaster</a></td>
	<td width="267">Email marketing management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=179">StrikeIron Email Verification</a></td>
	<td width="267">Email verification service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.verticalresponse.com/labs/developers/">Vertical Response</a></td>
	<td width="267">Email management services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.webmail.us/resellers/api">Webmail.us</a></td>
	<td width="267">Email hosting service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.whatcounts.com/technology/apis.html">WhatCounts</a></td>
	<td width="267">Email management services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/mail/">Yahoo Mail</a></td>
	<td width="267">Web based email system</td>
 </tr>
  </table>
	<h2>Enterprise</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://developer.employease.com/extend.html">Employease</a></td>
	<td width="267">On-demand human resource management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/apps/gdata_provisioning_api_v2.0_reference.html">Google Provisioning</a></td>
	<td width="267">User provisioning for Google Applications</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.lokad.com/Support.ashx">Lokad</a></td>
	<td width="267">Time series forecaster</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.netdocuments.com/Alliances.aspx">NetDocuments</a></td>
	<td width="267">Enterprise document management service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.netsuite.com/portal/developers/main.shtml">NetSuite</a></td>
	<td width="267">Business application suite</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.sforce.com/">Salesforce.com</a></td>
	<td width="267">CRM services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.webex.com/partners/developer-overview.html">WebEx</a></td>
	<td width="267">Conferencing and collaboration services</td>
 </tr>
  </table>
	<h2>Events</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.eventfinder.co.nz/content/api.html">Eventfinder</a></td>
	<td width="267">Events calendar</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://api.eventful.com/">Eventful</a></td>
	<td width="267">Events discovery and demand</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.spraci.com/api/">Spraci</a></td>
	<td width="267">Events and clubs database</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://upcoming.yahoo.com/services/api/">Upcoming.org</a></td>
	<td width="267">Collaborative event calendar</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.zvents.com/support/developers">Zvents</a></td>
	<td width="267">Local events search and community</td>
 </tr>
  </table>
	<h2>Financial</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.blinksale.com/api">Blinksale</a></td>
	<td width="267">Online invoicing services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=227">Currency Rates</a></td>
	<td width="267">Currency rates</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=223">Dun and Bradstreet Credit Check</a></td>
	<td width="267">Credit check</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developers.freshbooks.com/">FreshBooks</a></td>
	<td width="267">Online invoicing and time tracking</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://api.kashflow.co.uk/">KashFlow</a></td>
	<td width="267">Online accounting software</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.moneytrackin.com/help/API/">Moneytrackin</a></td>
	<td width="267">Expense tracking</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.netaccounts.com.au/developers/">NetAccounts</a></td>
	<td width="267">Online accounting service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.prosper.com/tools/API.aspx">Prosper</a></td>
	<td width="267">Peer-to-peer network</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=113">StrikeIron Historical Stock Quotes</a></td>
	<td width="267">Stock price quotes for US equities</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=124">StrikeIron Mutual Funds</a></td>
	<td width="267">Historical mutual funds</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=115">StrikeIron Stock Quotes Basic</a></td>
	<td width="267">Real-time stock quotes</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="https://www.wesabe.com/page/api">Wesabe</a></td>
	<td width="267">Personal finance management and community</td>
 </tr>
  </table>
	<h2>Government</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.avencia.com/Products/Cicero/Developers.aspx">Cicero</a></td>
	<td width="267">Lookup service for US elected officials by address</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.civicfootprint.org/about/api">Civic Footprint</a></td>
	<td width="267">Political geography lookup for Illinois</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://support.democracyinaction.org/wiki/index.php/API_Documentation">Democracy In Action</a></td>
	<td width="267">Advocacy services for nonprofits</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.fedspending.org/apidoc.php">FedSpending.org</a></td>
	<td width="267">Database of US government spending</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.followthemoney.org/services">Follow The Money</a></td>
	<td width="267">Database of US campaign contributions</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.state.ri.us/govtracker/services/">GovTracker</a></td>
	<td width="267">Rhode Island state data services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.louisdb.org/api/">LOUIS</a></td>
	<td width="267">US federal documents database</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://ops.espacenet.com/">Open Patent Services</a></td>
	<td width="267">European Patent Office web services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://sunlightlabs.com/api/">Sunlight Labs</a></td>
	<td width="267">US Congress database service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.theyworkforyou.com/api/">TheyWorkForYou</a></td>
	<td width="267">Track the UK Parliament</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://whoismyrepresentative.com/">Who is my Representative</a></td>
	<td width="267">Database of US congressional representatives</td>
 </tr>
  </table>
	<h2>Internet</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://aws.amazon.com/ast">Alexa Site Thumbnail</a></td>
	<td width="267">Thumbnail images of web site home pages</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://aws.amazon.com/alexatopsites">Alexa Top Sites</a></td>
	<td width="267">Web site traffic rankings</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.amazon.com/b/ref=sc_fe_l_2/104-7185354-2899168?ie=UTF8&#038;node=201590011&#038;no=3435361">Amazon EC2</a></td>
	<td width="267">Elastic Compute Cloud virtual hosting</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://getclicky.com/help/api">Clicky</a></td>
	<td width="267">Web site analytics</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.compete.com/">Compete</a></td>
	<td width="267">Internet web site metrics and analytics</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://cordurl.com/static/api.html">Cordurl</a></td>
	<td width="267">Geo coordinate translation</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.dapper.net/developers/webservices/search.php">Dapper</a></td>
	<td width="267">Service for API creation</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://xml-api.domaintools.com/">Domain Tools</a></td>
	<td width="267">Internet domain name lookup</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://durl.us/">Durl.us</a></td>
	<td width="267">URL shortening</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.ecommstats.com/services/docs/">Ecommstats</a></td>
	<td width="267">Web analytics</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.hostip.info/use.html">Hostip.info</a></td>
	<td width="267">IP lookup</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.html2pdf.biz/api.php">HTML2PDF</a></td>
	<td width="267">HTML to PDF conversion</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.archive.org/help/contrib-advanced.php">Internet Archive</a></td>
	<td width="267">Non-profit Internet library</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=149">IP Address Lookup</a></td>
	<td width="267">Determine IP address from domain name</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.shauninman.com/plete/2005/10/mint-intro-to-pepper-development">Mint</a></td>
	<td width="267">Web site metrics and reporting</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://mon.itor.us/api/api.htm">Mon.itor.us</a></td>
	<td width="267">Web site monitoring services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://mynotify.com/info/developers">MyNotify</a></td>
	<td width="267">Feed publication</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.nenest.com/_doc/Api.aspx">Nenest</a></td>
	<td width="267">Web forms and application framework</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.outune.com/?ln=mc">Outune</a></td>
	<td width="267">Web map engine</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.pingdom.com/api/">Pingdom</a></td>
	<td width="267">Web site monitoring and reporting</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://qurl.com/help_automate.php">Qurl</a></td>
	<td width="267">URL redirection</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.softlayer.com/devnet.html">SoftLayer</a></td>
	<td width="267">Systems management and monitoring</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://unapi.info/">UnAPI</a></td>
	<td width="267">Proposal for web clipboard</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.w3counter.com/features/api/">W3Counter</a></td>
	<td width="267">Web site metrics tools</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://webride.org/developers/api">Webride</a></td>
	<td width="267">Attaches discussions to any site</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://bluga.net/webthumb/api.txt">WebThumb</a></td>
	<td width="267">Thumbnail image generation</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://msdn2.microsoft.com/en-us/library/bb259721.aspx">Windows Live Custom Domains</a></td>
	<td width="267">Web site administration</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/siteexplorer/">Yahoo Site Explorer</a></td>
	<td width="267">Web site analysis service</td>
 </tr>
  </table>
	<h2>Job Search</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.indeed.com/jsp/apiinfo.jsp">Indeed</a></td>
	<td width="267">Job search services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://services.smashfly.com/simplepostservice/postingmanager.asmx">SmashFly</a></td>
	<td width="267">Job board posting service</td>
 </tr>
  </table>
	<h2>Mapping</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.esri.com/software/arcwebservices/index.html">ArcWeb</a></td>
	<td width="267">Mapping and GIS services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.bigtribe.com/publisher/docs/references.jsp">BigTribe</a></td>
	<td width="267">Location based advertising</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.telcontar.com/products/dds/dds_webservicesapi.html">deCarta</a></td>
	<td width="267">Location-based services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.earthtools.org/webservices.htm">EarthTools</a></td>
	<td width="267">Web services for geographical information</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.feedmap.net/BlogMap/Services/">FeedMap</a></td>
	<td width="267">Blog geo-coding</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.garmin.com/web-products/web-services/">Garmin MotionBased</a></td>
	<td width="267">GPS services and mapping</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://geocoder.us/help/">geocoder</a></td>
	<td width="267">Geocoding services for US</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://geocoder.ca/?api=1">geocoder.ca</a></td>
	<td width="267">Geocoding services for Canada</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.geoiq.com/">GeoIQ</a></td>
	<td width="267">Geospatial analysis and heat mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.geonames.org/export/">GeoNames</a></td>
	<td width="267">Geographic name and postal code lookup</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="https://www2.getmapping.com/webemail/mobileapps.aspx">GetMapping</a></td>
	<td width="267">Aerial photography and mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.globexplorer.com/products/imagebuilder-suite.shtml">GlobeXplorer</a></td>
	<td width="267">Mapping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.google.com/apis/maps/">Google Maps</a></td>
	<td width="267">Mapping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.hopstop.com/freeapi/">HopStop</a></td>
	<td width="267">Mass transit and walking directions</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.isharemaps.com/products/isharemaps_on_demand/isharemaps_on_demand.html">iShareMaps On Demand</a></td>
	<td width="267">UK Postcode Geocoder</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://devnet.map24.com/index.php">Map24 AJAX API</a></td>
	<td width="267">Mapping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.mappr.com/about/api.phtml">Mappr</a></td>
	<td width="267">Photo mapping</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.mapquest.com/features/main.adp?page=developer_tools_oapi">MapQuest</a></td>
	<td width="267">Online mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.mapstraction.com/">Mapstraction</a></td>
	<td width="267">Mapping API abstraction layer</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://labs.metacarta.com/GeoParser/documentation.html">MetaCarta</a></td>
	<td width="267">Location and geotagging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://msdn.microsoft.com/mappoint/">Microsoft MapPoint</a></td>
	<td width="267">Mapping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.live.com/virtualearth">Microsoft Virtual Earth</a></td>
	<td width="267">Mapping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.multimap.com/share/documentation/api/">Multimap</a></td>
	<td width="267">Global online mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://wms.jpl.nasa.gov/">NASA</a></td>
	<td width="267">Satellite mapping images</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://openapi.naver.com/19.html">Naver Maps</a></td>
	<td width="267">Korean mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.nearby.org.uk/api/convert-help.php">Nearby.org.uk</a></td>
	<td width="267">Geocoding service for UK</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.ontok.com/geocode/jsapi">Ontok</a></td>
	<td width="267">Geocode any US address</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.openlayers.org/">OpenLayers</a></td>
	<td width="267">Mapping API abstraction layer</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://wiki.openstreetmap.org/index.php/OSM_Protocol_Stack">OpenStreetMap</a></td>
	<td width="267">The Free Wiki World Map</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.platial.com/services/api">Platial</a></td>
	<td width="267">Collaborative geographic service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.codeplaze.com/">Plazes</a></td>
	<td width="267">Location discovery service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://freeearth.poly9.com/api/documentation.php">Poly9 FreeEarth</a></td>
	<td width="267">3D mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.pushpin.com/">Pushpin</a></td>
	<td width="267">Mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://ws.urbanmapping.com/hoods/docs">Urban Mapping</a></td>
	<td width="267">Urban geo-spatial data services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://gisdata.usgs.gov/XMLWebServices/TNM_Elevation_Service.php">USGS Elevation Query Service</a></td>
	<td width="267">Determine elevation based on latitude and longitude</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.viamichelin.com/">ViaMichelin</a></td>
	<td width="267">Mapping, directions, and travel booking</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.wayfaring.com/help/published/Wayfaring+API">Wayfaring</a></td>
	<td width="267">Map creation and sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.where.com/create/">WHERE GPS</a></td>
	<td width="267">Mobile GPS widget platform</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.timhibbard.com/webservices/engraphgps/engraph.asmx">Where Is Tim Web Service</a></td>
	<td width="267">Location tracking</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.where2getit.com/landing/developers">Where2GetIt Geospatial</a></td>
	<td width="267">Non-mapping geospatial services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.where2getit.com/landing/developers">Where2GetIt SlippyMap</a></td>
	<td width="267">Online mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://workshop.whereis.com/api/index.thtml">Whereis</a></td>
	<td width="267">Australian and New Zealand mapping service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://wigle.net/wiki/index.cgi?API">Wigle</a></td>
	<td width="267">Wireless network mapping</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.net/maps/rest/V1/geocode.html">Yahoo Geocoding</a></td>
	<td width="267">Geocoding services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/maps/rest/V1/mapImage.html">Yahoo Map Image</a></td>
	<td width="267">Map image creation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/maps/">Yahoo Maps</a></td>
	<td width="267">Mapping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.zeesource.net/maps/geocoding.do">ZeeMaps</a></td>
	<td width="267">Embedded maps and international geocoding</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.zoomin.com.au/">ZoomIn</a></td>
	<td width="267">Australian mapping service</td>
 </tr>
  </table>
	<h2>Media Management</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www0.rdthdo.bbc.co.uk/services/">BBC</a></td>
	<td width="267">Multimedia archive database</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://grouper.com/api/">Grouper Video</a></td>
	<td width="267">Video sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.orb.com/">Orb</a></td>
	<td width="267">Digital media remote access and management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://support.phanfare.com/doc/Phanfare_Public_API">Phanfare</a></td>
	<td width="267">Photo and video sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://mediamax.streamload.com/webservices/">Streamload</a></td>
	<td width="267">Online media storage</td>
 </tr>
  </table>
	<h2>Medical</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.ncbi.nlm.nih.gov/entrez/query/static/esoap_help.html">cPath</a></td>
	<td width="267">Medical database lookup</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.genome.jp/kegg/soap/">Kegg</a></td>
	<td width="267">Bioinformatics data services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.ncbi.nlm.nih.gov/entrez/query/static/esoap_help.html">NCBI Entrez</a></td>
	<td width="267">Life sciences search services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.pubmedcentral.nih.gov/articlerender.fcgi?tool=pubmed&#038;pubmedid=12401134">SeqHound</a></td>
	<td width="267">Bioinformatics research database</td>
 </tr>
  </table>
	<h2>Messaging</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.411sync.com/cgi-bin/developer.cgi">411Sync</a></td>
	<td width="267">SMS, WAP, and email messaging</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.aql.com/site/developerinfo.php">Aql</a></td>
	<td width="267">SMS solutions portal</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.clickatell.com/brochure/products/api_http.php">Clickatell</a></td>
	<td width="267">SMS Messaging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://jaiku.com/api">Jaiku</a></td>
	<td width="267">Social messaging service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.mobivity.com/developers.aspx">Mobivity</a></td>
	<td width="267">SMS marketing messaging service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.movil.be/?s=developer_zone">Movil</a></td>
	<td width="267">SMS messaging</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://group.partysync.com/cgi-bin/developer.cgi">PartySync</a></td>
	<td width="267">Messaging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.sabifoo.com/help">Sabifoo</a></td>
	<td width="267">IM to RSS conversion service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.smsbug.com/api/webservice.asmx">SmsBug</a></td>
	<td width="267">SMS messaging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://strikeiron.com/ProductDetail.aspx?p=190">StrikeIron Global SMS Pro</a></td>
	<td width="267">SMS messaging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=162">StrikeIron Mobile Email</a></td>
	<td width="267">Mobile email messaging service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://textamerica.com/api.aspx">Textamerica</a></td>
	<td width="267">Moblogs</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://w2.trekmail.com/stories/storyReader$46">Trekmail</a></td>
	<td width="267">Messaging services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://api.twittervision.com/api.html">Twittervision</a></td>
	<td width="267">Location based data for the Twitter service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.aol.com/userplane/index.html">Userplane</a></td>
	<td width="267">Communication software for online communities</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="https://www.vazu.com/api/index.php">Vazu</a></td>
	<td width="267">SMS messaging service</td>
 </tr>
  </table>
	<h2>Music</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://aol.musicnow.com/media/developer/index.htm">AOL Music Now</a></td>
	<td width="267">Music playlist management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://digitalpodcast.com/podcastsearchservice/">Digital Podcast</a></td>
	<td width="267">Podcast search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.faces.com/Edit/API/GettingStarted.aspx">Faces.com</a></td>
	<td width="267">Photo and media sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.feedcache.net/index.php?n=Main.API">Feedcache</a></td>
	<td width="267">Feed caching service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.freedb.org/modules.php?name=Sections&#038;sop=listarticles&#038;secid=2">Freedb / CDDB</a></td>
	<td width="267">Online CD catalog service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.audioscrobbler.net/data/webservices/">Last.fm</a></td>
	<td width="267">Music playlist management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.mp3tunes.com/api/">MP3Tunes</a></td>
	<td width="267">Music services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://wiki.musicbrainz.org/XMLWebService">MusicBrainz</a></td>
	<td width="267">Music metadata community service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.musicip.com/dns/">MusicDNS.org</a></td>
	<td width="267">Music fingerprinting service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://mobdev.pbwiki.com/">MusicMobs</a></td>
	<td width="267">Social music service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.musicstrands.com/openstrands/overview.vm">OpenStrands</a></td>
	<td width="267">Music recommendation and discovery</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://webservices.rhapsody.com/">Rhapsody</a></td>
	<td width="267">Online music services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.seeqpod.com/api/">SeeqPod</a></td>
	<td width="267">Music recommendation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://labs.snocap.com/software/mystore-search-api/">SNOCAP</a></td>
	<td width="267">Digital music marketplace</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://soundtoys.net/contribute/api">Soundtoys</a></td>
	<td width="267">Visual artists works repository</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://tunelog.com/api/">Tunelog</a></td>
	<td width="267">Music metadata management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://webjay.org/api/help">WebJay</a></td>
	<td width="267">Music playlist management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.aol.com/winamp/index.html">Winamp</a></td>
	<td width="267">Customizable music player</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/music/">Yahoo Music Engine</a></td>
	<td width="267">Desktop music player</td>
 </tr>
  </table>
	<h2>News</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://amphetarate.newsfairy.com/api.php">AmphetaRate</a></td>
	<td width="267">News aggregator</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://sws.clearforest.com/Blog/?page_id=6">ClearForest Semantic Web Services1</a></td>
	<td width="267">Natural language processing tools</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.daylife.com/">Daylife</a></td>
	<td width="267">Online News Service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://apidoc.digg.com/">Digg</a></td>
	<td width="267">&nbsp;</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.findory.com/help/api">Findory</a></td>
	<td width="267">Personalized news aggregation</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://weblogs.macromedia.com/mxna/Developers.cfm">Macromedia News Aggregator</a></td>
	<td width="267">Data access service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://w.moreover.com/site/products/oem/search_api_oem.html">Moreover</a></td>
	<td width="267">News delivery</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.newscloud.com/learn/apidocs/">NewsCloud</a></td>
	<td width="267">Social news service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.newsisfree.com/webservice.php">NewsIsFree</a></td>
	<td width="267">Online news aggregation</td>
 </tr>
  </table>
	<h2>Office</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.backpackit.com/api/">Backpack</a></td>
	<td width="267">Online information manager</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://wiki.bigcontacts.com/index.php/API_Details">Big Contacts</a></td>
	<td width="267">Web based contact management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://labs.editgrid.com/wiki/EditGrid_API">EditGrid</a></td>
	<td width="267">Online spreadsheet</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/documents/overview.html">Google Documents List</a></td>
	<td width="267">Document management services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/gdata/spreadsheets.html">Google Spreadsheets</a></td>
	<td width="267">Online spreadsheets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://numbler.com/apidoc">Numbler</a></td>
	<td width="267">Online spreadsheet service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.slideshare.net/developers/">SlideShare</a></td>
	<td width="267">Presentation sharing community</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://writer.zoho.com/public/help/zohoapi/fullpage">Zoho</a></td>
	<td width="267">Online office suite</td>
 </tr>
  </table>
	<h2>Photos</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://dev.aol.com/aol_pictures">AOL Pictures</a></td>
	<td width="267">Online photo management</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.buzznet.com/developers/">Buzznet</a></td>
	<td width="267">Photo sharing</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/www.flickr.com/services/api/">Flickr</a></td>
	<td width="267">Photo sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.fotolia.com/Services/API/Introduction">Fotolia</a></td>
	<td width="267">Royalty free stock photos</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/picasaweb/overview.html">Google Picasa</a></td>
	<td width="267">Photo management and sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.imageloop.com/de/api/index.htm">imageLoop</a></td>
	<td width="267">Animated slideshow service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/www.panoramio.com/api/">Panoramio</a></td>
	<td width="267">Photo upload site with organizer</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.pixagogo.com/Tools/api/apihelp.aspx">Pixagogo</a></td>
	<td width="267">Online photo services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/www.riya.com/riyaAPI">Riya</a></td>
	<td width="267">Photo search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/www.shutterpoint.com/Home-API.cfm">ShutterPoint</a></td>
	<td width="267">Stock photography service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://blogs.smugmug.com/api/category/smugmug/smugmug-api/">Smugmug</a></td>
	<td width="267">Photo sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/snipshot.com/services/">Snipshot</a></td>
	<td width="267">Online photo editing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/www.webshots.com/html/services.html">WebShots</a></td>
	<td width="267">Photo sharing service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/full-web-20-api-list/developer.yahoo.com/photos/">Yahoo Photos</a></td>
	<td width="267">Online photo service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://writer.zoho.com/public/help/zohoapi/fullpage">Zoto</a></td>
	<td width="267">Photo sharing service</td>
 </tr>
  </table>
	<h2>Recommendations</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://blog.criteo.com/tag/API">Criteo</a></td>
	<td width="267">Distributed recommendation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://easyutil.com/rec_api_ref.html">EasyUtil</a></td>
	<td width="267">Recommendation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.rapleaf.com/apidoc/v1">RapLeaf</a></td>
	<td width="267">Portable ratings system</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.yelp.com/developers/documentation">Yelp</a></td>
	<td width="267">Local user reviews and city guides</td>
 </tr>
  </table>
	<h2>Reference</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://services.aonaware.com/DictService/">Aonaware Dictionary</a></td>
	<td width="267">Dictionary lookup service/td&gt;</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=240">City and State by Zip Code</a></td>
	<td width="267">Address lookup service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=207">Dun and Bradstreet</a></td>
	<td width="267">Research company background data</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://techmagazine.ws/wp-admin/www.chilternplc.com/services/area/11/svc/201%20-%2019k">Bussines Verification</a></td>
	<td width="267">Business research services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://api.futef.com/apidocs.html">FUTEF Wikipedia API</a></td>
	<td width="267">Third party Wikipedia web service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://search.cpan.org/%7Erjray/WebService-ISBNDB-0.32/lib/WebService/ISBNDB/API.pm">ISBNdb</a></td>
	<td width="267">Books database</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.loc.gov/standards/sru/">Library of Congress SRW</a></td>
	<td width="267">Information database search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://services.msdn.microsoft.com/ContentServices/ContentService.asmx">Microsoft MSDN</a></td>
	<td width="267">Technical reference library</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.opendoar.org/tools/api.html">OpenDOAR</a></td>
	<td width="267">Academic research repository</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=147">PhoneVal</a></td>
	<td width="267">Phone number validation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=157">RealEDA Reverse Phone Lookup</a></td>
	<td width="267">Lookup address and name via phone</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://belay.extendthereach.com/api/">SRC Demographics</a></td>
	<td width="267">Demographic reference data</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=136">StrikeIron Address Verfication</a></td>
	<td width="267">Global address verification service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=160">StrikeIron Do Not Call</a></td>
	<td width="267">Telephone number verification</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=114">StrikeIron Insider Trading</a></td>
	<td width="267">Insider trading transaction information</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=140">StrikeIron Phone Number Enhancement</a></td>
	<td width="267">Adds address and statistical data based on phone number</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=233">StrikeIron Residential Lookup</a></td>
	<td width="267">Residential directory lookup and validation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=103">StrikeIron Reverse Phone Lookup</a></td>
	<td width="267">Reverse phone lookup services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=105">StrikeIron Sales Tax Basic</a></td>
	<td width="267">Sales and use tax data service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=115">StrikeIron Super Data Pack</a></td>
	<td width="267">APIs for variety of reference data sources</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=134">StrikeIron US Census</a></td>
	<td width="267">Census data information service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=106">StrikeIron Zacks Company Profile</a></td>
	<td width="267">Corporate profiles web service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.talis.com/tdn/platform">Talis</a></td>
	<td width="267">Library 2.0 reference services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.urbandictionary.com/api.php">UrbanDictionary</a></td>
	<td width="267">Slang dictionary lookup</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=213">US Yellow Pages</a></td>
	<td width="267">Telephone directory</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/answers">Yahoo Answers</a></td>
	<td width="267">Community driven reference service</td>
 </tr>
  </table>
	<h2>Search</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://aws.amazon.com/alexawebsearch">Alexa Web Information Service</a></td>
	<td width="267">Web site information and traffic data</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://aws.amazon.com/alexawebsearch">Alexa Web Search</a></td>
	<td width="267">Web Search Engine</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://a9.com/-/opensearch/">Amazon A9 OpenSearch</a></td>
	<td width="267">&nbsp;</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.gigablast.com/searchfeed.html">Gigablast</a></td>
	<td width="267">&nbsp;</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/ajaxsearch/">Google Ajax Search</a></td>
	<td width="267">Web search components</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/gdata/codesearch.html">Google Code Search</a></td>
	<td width="267">Code search service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://desktop.google.com/developer.html">Google Desktop</a></td>
	<td width="267">Desktop search and gadgets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.google.com/apis/">Google Search</a></td>
	<td width="267">Search services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.kratia.com/api.php">Kratia</a></td>
	<td width="267">Democratic search engine</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://openapi.naver.com/">Naver</a></td>
	<td width="267">Korean search engine</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.vast.com/contact/api.htm">Vast</a></td>
	<td width="267">Structured web search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://search.msn.com/developer/">Windows Live Search</a></td>
	<td width="267">Internet search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://blog.wink.com/">Wink</a></td>
	<td width="267">Social search service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/image/V1/imageSearch.html">Yahoo Image Search</a></td>
	<td width="267">Image search services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/local/V2/localSearch.html">Yahoo Local Search</a></td>
	<td width="267">Local search service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/myweb/">Yahoo My Web Search</a></td>
	<td width="267">Personalized search services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/web/V1/relatedSuggestion.html">Yahoo Related Suggestions</a></td>
	<td width="267">Search suggestion service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/">Yahoo Search</a></td>
	<td width="267">Search services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/content/V1/termExtraction.html">Yahoo Term Extraction</a></td>
	<td width="267">Contextual search service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.aol.com/openauth">AOL Open Auth</a></td>
	<td width="267">Authentication services</td>
 </tr>
  </table>
	<h2>Shopping</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.amazon.com/gp/browse.html/ref=sc_fe_l_2/103-1644811-9832630?_encoding=UTF8&#038;node=12738641&#038;no=3435361">Amazon eCommerce</a></td>
	<td width="267">Online retailer</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.amazon.com/b/ref=sc_fe_l_2/103-7845615-8014225?ie=UTF8&#038;node=15811391&#038;no=15879911&#038;me=A36L942TSJ2AJA">Amazon Historical Pricing</a></td>
	<td width="267">Historical product sales data</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.authorize.net/">Authorize.Net</a></td>
	<td width="267">Internet based payment gateway services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.avantlink.com/api.php">AvantLink</a></td>
	<td width="267">Affiliate marketing network</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://api.cnet.com/">CNET</a></td>
	<td width="267">Shopping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://webservices.cj.com/">Commission Junction</a></td>
	<td width="267">Online affiliate programs</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.strikeiron.com/ProductDetail.aspx?p=232">DataUnison eBay Research</a></td>
	<td width="267">eBay pricing and sales trend data</td>
 </tr>
	<tr>
<td width="161" height="22"><a target="_blank" href="http://www.programmableweb.com/api/direct-textbook">Direct Textbook</a></td>
	<td width="267" height="22">Book price comparison service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.ebay.com/">eBay</a></td>
	<td width="267">Online auction marketplace</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://mecommerce.goodstorm.com/api/v1/">GoodStorm</a></td>
	<td width="267">Online retail ecommerce</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.programmableweb.com/api/google-base">Google Base</a></td>
	<td width="267">Platform for structure and semi-structured data</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://code.google.com/apis/checkout/">Google Checkout</a></td>
	<td width="267">Shopping cart services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.pricerunner.com/partner/partner.html">PriceRunner</a></td>
	<td width="267">Shopping comparison engine</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="https://partners.shopping.com/app">Shopping.com</a></td>
	<td width="267">Online retail shopping</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.swapthing.com/user/wsRegistration.jsp">SwapThing</a></td>
	<td width="267">Community driven swapping site</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.upcdatabase.com/xmlrpc.asp">UPC Database</a></td>
	<td width="267">UPC lookup service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.live.com/expo/">Windows Live Expo</a></td>
	<td width="267">Online classifieds service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/shopping/">Yahoo Shopping</a></td>
	<td width="267">Shopping services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.zazzle.com/api">Zazzle</a></td>
	<td width="267">On-demand product creation service</td>
 </tr>
  </table>
	<h2>Storage</h2>
	<table border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.amazon.com/gp/browse.html/103-7232640-5009469?node=16427261">Amazon S3</a></td>
	<td width="267">Online storage services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://enabled.box.net/">Box.net</a></td>
	<td width="267">Online file storage</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.movedigital.com/docs/index.php/MoveDigital_API">MoveDigital</a></td>
	<td width="267">File delivery and management services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.omnidrive.com/">Omnidrive</a></td>
	<td width="267">Online storage services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.aol.com/xdrive_api">Open Xdrive</a></td>
	<td width="267">Online data storage service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://documentation.openomy.com/index.php/Main_Page">Openomy</a></td>
	<td width="267">Online file system</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.tagalag.com/tools.html#api">Tagalag</a></td>
	<td width="267">Email tagging</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://zingosoft.com/tagfinder.htm">TagFinder</a></td>
	<td width="267">Tag extraction service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.programmableweb.com/api/tagthe.net">Tagthe.net</a></td>
	<td width="267">Tag recommendation service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.tagtooga.com/tapp/db.exe?c=pg&#038;f=rest-api">TagTooga</a></td>
	<td width="267">Tag based Internet directory</td>
 </tr>
  </table>
	<h2>Video</h2>
	<table border="0">
<tr>
<td width="161"><a target="_blank" href="http://developer.searchvideo.com/index.php">Truveo</a></td>
	<td width="267">Video search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.blinkx.com/devnet/registrationsplash">Blinkx</a></td>
	<td width="267">Video search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dave.tv/Programming-BasicConcepts.aspx">Dave.TV</a></td>
	<td width="267">Video distribution network</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.livevideo.com/api/default.aspx">LiveVideo</a></td>
	<td width="267">Video repository and user community</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.revver.com/">Revver</a></td>
	<td width="267">Video services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.veoh.com/restApiDoc/restReference.html">Veoh</a></td>
	<td width="267">Virtual television and video network</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://videodetective.com/xmlapi.aspx">Video Detective</a></td>
	<td width="267">Film trailers, cast, images, and related information</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.yahoo.com/search/video/V1/videoSearch.html">Yahoo Video Search</a></td>
	<td width="267">Video search</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.youtube.com/dev">YouTube</a></td>
	<td width="267">Video sharing and search</td>
 </tr>
  </table>
	<h2>Widgets</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://www.clearspring.com/docs/tech/apis">ClearSpring</a></td>
	<td width="267">Widget creation, distribution, and tracking services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.google.com/apis/gadgets/index.html">Google Gadgets</a></td>
	<td width="267">&nbsp;</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.netvibes.com/">Netvibes</a></td>
	<td width="267">Personalized home page with widgets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.pageflakes.com/Community/Developers/Documentation.aspx">Pageflakes</a></td>
	<td width="267">Personalized start page and widgets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.klipfolio.com/">Serence Klip</a></td>
	<td width="267">Desktop gadgets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.thespringbox.com/developers/">SpringWidgets</a></td>
	<td width="267">Widget platform</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.tagworld.com/-/widgets/WidgetSubmit.aspx">TagWorld</a></td>
	<td width="267">Social web services</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://dev.live.com/gadgets/default.aspx?app=gadgets">Windows Live Gadgets</a></td>
	<td width="267">Online gadgets service</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://msdn2.microsoft.com/en-us/library/ms723694.aspx">Windows Sidebar Gadgets</a></td>
	<td width="267">Desktop gadgets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://widgets.yahoo.com/workshop/">Yahoo Widgets</a></td>
	<td width="267">Desktop widgets</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.yourminis.com/developers">Yourminis</a></td>
	<td width="267">Personalized start page</td>
 </tr>
  </table>
	<h2>WIKI</h2>
	<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td width="161"><a target="_blank" href="http://dbpedia.org/docs/">DBpedia</a></td>
	<td width="267">Structured query interface to Wikipedia</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://developer.jot.com/WikiHome/DevDocToc">JotSpot</a></td>
	<td width="267">Wiki-style collaboration tools</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://api.pbwiki.com/">PBwiki</a></td>
	<td width="267">Consumer wiki farm</td>
 </tr>
	<tr>
<td width="161"><a target="_blank" href="http://www.wikimatrix.org/wiki/api">WikiMatrix</a></td>
	<td width="267">Wiki search and comparison service</td>
</tr>
</table>
	<p>&nbsp;</p>
<a href="http://techmagazine.ws/full-web-20-api-list/" target="_self" title="Full WEB 2.0 API List"></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://bestsolution.blogsome.com/2008/07/12/full-web-20-api-list/feed/</wfw:commentRss>
	</item>
	</channel>
</rss>
