<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ersin Acar &#187; Bookmarks</title>
	<atom:link href="http://ersinacar.com/category/bookmarks/feed" rel="self" type="application/rss+xml" />
	<link>http://ersinacar.com</link>
	<description>PHP and Web Technologies Freak</description>
	<lastBuildDate>Fri, 14 May 2010 11:57:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery Visualize: Updated accessible charts and graphs</title>
		<link>http://ersinacar.com/jquery-visualize-updated-accessible-charts-and-graphs_182.html</link>
		<comments>http://ersinacar.com/jquery-visualize-updated-accessible-charts-and-graphs_182.html#comments</comments>
		<pubDate>Fri, 21 Aug 2009 07:54:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[visualize]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=182</guid>
		<description><![CDATA[Scott Jehl has released jQuery Visualize, the plugin that groks HTML tables and generates lovely charts from it, all from a simple $(&#8216;table&#8217;).visualize(); (lot&#8217;s of options for you to twiddle too if you want).
First, you create a bog standard table like:

&#60;table border=&#34;0&#34;&#62;
&#60;caption&#62;2009 Individual Sales by Category&#60;/caption&#62;
&#60;thead&#62;
&#60;tr&#62;
&#60;td&#62;&#60;/td&#62;
&#60;th&#62;food&#60;/th&#62;
&#60;th&#62;auto&#60;/th&#62;
&#60;th&#62;household&#60;/th&#62;
&#60;th&#62;furniture&#60;/th&#62;
&#60;th&#62;kitchen&#60;/th&#62;
&#60;th&#62;bath&#60;/th&#62;
&#60;/tr&#62;
&#60;/thead&#62;
&#60;tbody&#62;
&#60;tr&#62;
&#60;th&#62;Mary&#60;/th&#62;
&#60;td&#62;150&#60;/td&#62;
&#60;td&#62;160&#60;/td&#62;
&#60;td&#62;40&#60;/td&#62;
&#60;td&#62;120&#60;/td&#62;
&#60;td&#62;30&#60;/td&#62;
&#60;td&#62;70&#60;/td&#62;
&#60;/tr&#62;
&#60;tr&#62;
&#60;th&#62;Tom&#60;/th&#62;
&#60;td&#62;3&#60;/td&#62;
&#60;td&#62;40&#60;/td&#62;
&#60;td&#62;30&#60;/td&#62;
&#60;td&#62;45&#60;/td&#62;
&#60;td&#62;35&#60;/td&#62;
&#60;td&#62;49&#60;/td&#62;
&#60;/tr&#62;
...repetitive rows removed for brevity.&#60;/tbody&#62;&#60;/table&#62;

Then you visualize it. You end [...]]]></description>
			<content:encoded><![CDATA[<p>Scott Jehl has <a href="http://www.filamentgroup.com/lab/jquery_visualize_plugin_accessible_charts_graphs_from_tables_html5_canvas/">released jQuery Visualize</a>, the plugin that groks HTML tables and generates lovely charts from it, all from a simple $(&#8216;table&#8217;).visualize(); (lot&#8217;s of options for you to twiddle too if you want).</p>
<p>First, you create a bog standard table like:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;table border=&quot;0&quot;&gt;
&lt;caption&gt;2009 Individual Sales by Category&lt;/caption&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;td&gt;&lt;/td&gt;
&lt;th&gt;food&lt;/th&gt;
&lt;th&gt;auto&lt;/th&gt;
&lt;th&gt;household&lt;/th&gt;
&lt;th&gt;furniture&lt;/th&gt;
&lt;th&gt;kitchen&lt;/th&gt;
&lt;th&gt;bath&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;Mary&lt;/th&gt;
&lt;td&gt;150&lt;/td&gt;
&lt;td&gt;160&lt;/td&gt;
&lt;td&gt;40&lt;/td&gt;
&lt;td&gt;120&lt;/td&gt;
&lt;td&gt;30&lt;/td&gt;
&lt;td&gt;70&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;th&gt;Tom&lt;/th&gt;
&lt;td&gt;3&lt;/td&gt;
&lt;td&gt;40&lt;/td&gt;
&lt;td&gt;30&lt;/td&gt;
&lt;td&gt;45&lt;/td&gt;
&lt;td&gt;35&lt;/td&gt;
&lt;td&gt;49&lt;/td&gt;
&lt;/tr&gt;
...repetitive rows removed for brevity.&lt;/tbody&gt;&lt;/table&gt;</pre></div></div>

<p>Then you <a href="http://www.filamentgroup.com/examples/charting_v2/">visualize</a> it. You end up with pretty graphs like these:<br />
<img src="http://ersinacar.com/wp-content/uploads/2009/08/jqueryvisualize.png.png" alt="jquery visualize" title="jquery visualize" width="500" height="747" class="alignnone size-full wp-image-183" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/jquery-visualize-updated-accessible-charts-and-graphs_182.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text rotation with CSS</title>
		<link>http://ersinacar.com/text-rotation-with-css_177.html</link>
		<comments>http://ersinacar.com/text-rotation-with-css_177.html#comments</comments>
		<pubDate>Fri, 21 Aug 2009 07:36:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[rotation]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=177</guid>
		<description><![CDATA[Jonathan Snook posted good CSS stuff on Text Rotation with CSS that takes a nice bit of markup like this:

&#60;div class=&#34;example-date&#34;&#62;
  &#60;span class=&#34;day&#34;&#62;31&#60;/span&#62; 
  &#60;span class=&#34;month&#34;&#62;July&#60;/span&#62; 
  &#60;span class=&#34;year&#34;&#62;2009&#60;/span&#62;
&#60;/div&#62;

and converts it to:

all via the CSS:

-webkit-transform: rotate&#40;-90deg&#41;; 
-moz-transform: rotate&#40;-90deg&#41;;	
filter: progid:DXImageTransform.Microsoft.BasicImage&#40;rotation=3&#41;;

yeah as you can see it&#8217;s working on IE too. Not bad ha?
]]></description>
			<content:encoded><![CDATA[<p>Jonathan Snook posted good CSS stuff on <a href="http://snook.ca/archives/html_and_css/css-text-rotation">Text Rotation with CSS</a> that takes a nice bit of markup like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;div class=&quot;example-date&quot;&gt;
  &lt;span class=&quot;day&quot;&gt;31&lt;/span&gt; 
  &lt;span class=&quot;month&quot;&gt;July&lt;/span&gt; 
  &lt;span class=&quot;year&quot;&gt;2009&lt;/span&gt;
&lt;/div&gt;</pre></div></div>

<p>and converts it to:<br />
<img src="http://ersinacar.com/wp-content/uploads/2009/08/text-rotation.png" alt="text-rotation" title="text-rotation" width="265" height="100" class="alignnone size-full wp-image-178" /><br />
all via the CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;">-webkit-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>-90deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span> 
-moz-transform<span style="color: #00AA00;">:</span> rotate<span style="color: #00AA00;">&#40;</span>-90deg<span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>	
filter<span style="color: #00AA00;">:</span> progid<span style="color: #3333ff;">:DXImageTransform</span><span style="color: #6666ff;">.Microsoft</span>.BasicImage<span style="color: #00AA00;">&#40;</span>rotation<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">3</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span></pre></div></div>

<p>yeah as you can see it&#8217;s working on IE too. Not bad ha?</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/text-rotation-with-css_177.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fuck This Website!</title>
		<link>http://ersinacar.com/fuck-this-website_175.html</link>
		<comments>http://ersinacar.com/fuck-this-website_175.html#comments</comments>
		<pubDate>Mon, 27 Jul 2009 09:05:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[fuck]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[sticker]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=175</guid>
		<description><![CDATA[I found this website about 2 or years ago. it&#8217;s freaking funny xD Here are some picture from the site;




]]></description>
			<content:encoded><![CDATA[<p>I found <a href="http://www.fuckthiswebsite.com/">this</a> website about 2 or years ago. it&#8217;s freaking funny xD Here are some picture from the site;<br />
<img src="http://www.fuckthiswebsite.com/Images/fuck_23.gif" alt="Tiger Terror" /><span id="more-175"></span><br />
<img src="http://www.fuckthiswebsite.com/Images/fuck_27.gif" alt="restroom" /><br />
<img src="http://www.fuckthiswebsite.com/Images/fuck_7.gif" alt="no fuck" /><br />
<img src="http://www.fuckthiswebsite.com/Images/fuck_10.gif" alt="Chicken" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/fuck-this-website_175.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS 3 and  HTML 5 Cheat Sheet (PDF)</title>
		<link>http://ersinacar.com/css-3-and-html-5-cheat-sheet-pdf_171.html</link>
		<comments>http://ersinacar.com/css-3-and-html-5-cheat-sheet-pdf_171.html#comments</comments>
		<pubDate>Mon, 27 Jul 2009 08:51:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css 3]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[sheet]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=171</guid>
		<description><![CDATA[I saw this and this post on smashin magazine.
You can download this sheets for free
CSS 3

HTML 5


]]></description>
			<content:encoded><![CDATA[<p>I saw <a href="http://www.smashingmagazine.com/2009/07/13/css-3-cheat-sheet-pdf/">this</a> and <a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/">this</a> post on smashin magazine.<br />
You can download this sheets for free<br />
<a href="http://media2.smashingmagazine.com/wp-content/uploads/images/css3-cheat-sheet/css3.gif">CSS 3<br />
<img src="http://media2.smashingmagazine.com/wp-content/uploads/images/css3-cheat-sheet/css3.gif" alt="CSS 3 Sheet" /></a><br />
<a href="http://www.smashingmagazine.com/2009/07/06/html-5-cheat-sheet-pdf/">HTML 5<br />
<img src="http://media2.smashingmagazine.com/wp-content/uploads/images/html5-cheat-sheet/html5.gif" alt="HTML 5 Sheet" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/css-3-and-html-5-cheat-sheet-pdf_171.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free feed directories</title>
		<link>http://ersinacar.com/free-feed-directories_135.html</link>
		<comments>http://ersinacar.com/free-feed-directories_135.html#comments</comments>
		<pubDate>Wed, 27 May 2009 12:53:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=135</guid>
		<description><![CDATA[Here is the list of some free feed directories;
http://www.feedest.com/feedAdd.cfm
http://www.2rss.com/index.php
http://www.fybersearch.com/add-url.php

http://www.findrss.net/
http://www.feedbase.net/Add.php
http://www.izle.fr/addfeed.html?catid=
http://www.thriftyblogs.com/RSS/l_op=Addrss.html
http://blogoria.com/account/register/
http://www.rssatomland.com/addfeed.html?catid=
http://www.plazoo.com/en/addrss.asp
http://www.leighrss.com/rss-add.html
http://www.rssmicro.com/feedsubmit.web
http://feedfury.com/submit
http://blo.gs/ping.php
http://www.rssmotron.com/feed_submission.php
http://rss-feeds-submission.com/RSS/l_op=Addrss.html
http://www.millionrss.com/add-my-feed.php
http://publisher.yahoo.com/rss_guide/submit.php
http://add.my.yahoo.com/rss?url=http…ana&#038;submit=Add
http://www.readablog.com/AddFeed.aspx
http://www.goldenfeed.com/AddFeed.aspx
http://www.blogdigger.com/add.jsp
http://www.weblogalot.com/Ping?data=ok
http://www.feedboy.com/addfeed.html?catid=
http://chordata.info/
http://blogpulse.com/submit.html
http://www.icerocket.com/c?p=addblog
http://www.feeds4all.nl/NewFeed.aspx
http://www.rss-network.com/submitrss.php
http://www.jordomedia.com/RSS/l_op=Addrss.html
http://www.feedplex.com/add-url.php
http://www.rssmad.com/index.php
http://rssxpress.ukoln.ac.uk/
http://www.blogbunch.com/suggest/
http://www.redtram.com/pages/addsource/
http://4guysfromrolla.aspin.com/func…4guysfromrolla
http://www.feedgy.com/Submit.aspx
http://www.5z5.com/SuggestAFeed/
http://www.aspin.com/func/addres/rss-support
http://www.feedmap.net/submit/
http://www.feedsee.com/submit.html
http://www.rssbuffet.com/submit.php
http://www.tugli.com/addfeed.html?catid=
http://www.solarwarp.net/submitrss.php
http://www.rsstop10.com/directory/rss-submit.php
http://urss.co.uk/rss/RSS/l_op=Addrss.html
http://ngoid.sourceforge.net/sub_rss.php
http://www.xmeta.net/users/
http://news-feeds.org/addfeed.php
http://www.feedbees.com/add.php
http://rssmountain.com/submit_anonym.php
http://www.feedmailer.net/feedmanager
http://rss-feeds-directory.com/directory
http://www.devasp.com/search/AddRSS.asp
http://www.rssjunky.com/submit.html
http://www.rsspan.com/addfeed.html?catid=
http://music4profits.com/feed/article/addrss
http://www.blloggs.com/submit/
http://www.blog-collector.com/submit.php
http://blogville.us/submit.php
http://www.octora.com/add_rss.php
http://www.today.com/submit-blog
http://www.blogdire.com/add-blog.php
http://technorati.com/ping
]]></description>
			<content:encoded><![CDATA[<p>Here is the list of some free feed directories;</p>
<p>http://www.feedest.com/feedAdd.cfm</p>
<p>http://www.2rss.com/index.php</p>
<p>http://www.fybersearch.com/add-url.php</p>
<p><span id="more-135"></span></p>
<p>http://www.findrss.net/</p>
<p>http://www.feedbase.net/Add.php</p>
<p>http://www.izle.fr/addfeed.html?catid=</p>
<p>http://www.thriftyblogs.com/RSS/l_op=Addrss.html</p>
<p>http://blogoria.com/account/register/</p>
<p>http://www.rssatomland.com/addfeed.html?catid=</p>
<p>http://www.plazoo.com/en/addrss.asp</p>
<p>http://www.leighrss.com/rss-add.html</p>
<p>http://www.rssmicro.com/feedsubmit.web</p>
<p>http://feedfury.com/submit</p>
<p>http://blo.gs/ping.php</p>
<p>http://www.rssmotron.com/feed_submission.php</p>
<p>http://rss-feeds-submission.com/RSS/l_op=Addrss.html</p>
<p>http://www.millionrss.com/add-my-feed.php</p>
<p>http://publisher.yahoo.com/rss_guide/submit.php</p>
<p>http://add.my.yahoo.com/rss?url=http…ana&#038;submit=Add</p>
<p>http://www.readablog.com/AddFeed.aspx</p>
<p>http://www.goldenfeed.com/AddFeed.aspx</p>
<p>http://www.blogdigger.com/add.jsp</p>
<p>http://www.weblogalot.com/Ping?data=ok</p>
<p>http://www.feedboy.com/addfeed.html?catid=</p>
<p>http://chordata.info/</p>
<p>http://blogpulse.com/submit.html</p>
<p>http://www.icerocket.com/c?p=addblog</p>
<p>http://www.feeds4all.nl/NewFeed.aspx</p>
<p>http://www.rss-network.com/submitrss.php</p>
<p>http://www.jordomedia.com/RSS/l_op=Addrss.html</p>
<p>http://www.feedplex.com/add-url.php</p>
<p>http://www.rssmad.com/index.php</p>
<p>http://rssxpress.ukoln.ac.uk/</p>
<p>http://www.blogbunch.com/suggest/</p>
<p>http://www.redtram.com/pages/addsource/</p>
<p>http://4guysfromrolla.aspin.com/func…4guysfromrolla</p>
<p>http://www.feedgy.com/Submit.aspx</p>
<p>http://www.5z5.com/SuggestAFeed/</p>
<p>http://www.aspin.com/func/addres/rss-support</p>
<p>http://www.feedmap.net/submit/</p>
<p>http://www.feedsee.com/submit.html</p>
<p>http://www.rssbuffet.com/submit.php</p>
<p>http://www.tugli.com/addfeed.html?catid=</p>
<p>http://www.solarwarp.net/submitrss.php</p>
<p>http://www.rsstop10.com/directory/rss-submit.php</p>
<p>http://urss.co.uk/rss/RSS/l_op=Addrss.html</p>
<p>http://ngoid.sourceforge.net/sub_rss.php</p>
<p>http://www.xmeta.net/users/</p>
<p>http://news-feeds.org/addfeed.php</p>
<p>http://www.feedbees.com/add.php</p>
<p>http://rssmountain.com/submit_anonym.php</p>
<p>http://www.feedmailer.net/feedmanager</p>
<p>http://rss-feeds-directory.com/directory</p>
<p>http://www.devasp.com/search/AddRSS.asp</p>
<p>http://www.rssjunky.com/submit.html</p>
<p>http://www.rsspan.com/addfeed.html?catid=</p>
<p>http://music4profits.com/feed/article/addrss</p>
<p>http://www.blloggs.com/submit/</p>
<p>http://www.blog-collector.com/submit.php</p>
<p>http://blogville.us/submit.php</p>
<p>http://www.octora.com/add_rss.php</p>
<p>http://www.today.com/submit-blog</p>
<p>http://www.blogdire.com/add-blog.php</p>
<p>http://technorati.com/ping</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/free-feed-directories_135.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free premium wordpress themes</title>
		<link>http://ersinacar.com/free-premium-wordpress-themes_119.html</link>
		<comments>http://ersinacar.com/free-premium-wordpress-themes_119.html#comments</comments>
		<pubDate>Wed, 20 May 2009 19:30:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[premium]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=119</guid>
		<description><![CDATA[High quality free Wordpress Themes have become harder and harder to find in the past year, with the influx of premium themes, more and more designers and developers are selling themes (and rightly so, they do amazing work). But, that aside, the quality is certainly there, and we are sure you will be impressed with [...]]]></description>
			<content:encoded><![CDATA[<h3>High quality free Wordpress Themes have become harder and harder to find in the past year, with the influx of premium themes, more and more designers and developers are selling themes (and rightly so, they do amazing work). But, that aside, the quality is certainly there, and we are sure you will be impressed with this Wordpress theme compilation for 2009.</h3>
<p>1 &#8211; Blog &amp; Portfolio Themes(1-35)</p>
<p>2 &#8211; Magazine &amp; Corporate Themes(36-57)</p>
<p>3 &#8211; Photo blogs &amp; Gallery Themes(58-68)</p>
<p>4 &#8211; Minimal &amp; Clean Themes Themes(69-84)</p>
<p>5 &#8211; Smashing Magazine Themes(85-98)</p>
<p>6 &#8211; Something different… (99-104)</p>
<h3>Blog &amp; Portfolio Themes</h3>
<p><a href="http://web-kreation.com/index.php/wordpress/oneroom-another-free-wordpress-theme-by-web-kreation/">One Room</a> [<a href="http://web-kreation.com/demos/oneroom">Demo</a>]</p>
<p><a href="http://web-kreation.com/index.php/wordpress/oneroom-another-free-wordpress-theme-by-web-kreation/"><img src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme1a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://michael.tyson.id.au/wordpress/themes/elegant-grunge/">Elegant Grunge</a> [<a href="http://michael.tyson.id.au/wordpress/themes/elegant-grunge/">Demo</a>]</p>
<p><a href="http://michael.tyson.id.au/wordpress/themes/elegant-grunge/"><img src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme1b.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://digitalnature.ro/projects/fusion/">Fusion</a> [<a href="http://dev.digitalnature.ro/fusion/wordpress/">Demo</a>]<span id="more-119"></span></p>
<p><a href="http://digitalnature.ro/projects/fusion/"><img src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme1c.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.paddsolutions.com/wordpress-theme-matatag/">Matalag</a> [<a href="http://www.paddsolutions.com/wpmag/matatag">Demo</a>]</p>
<p><a href="http://www.paddsolutions.com/wordpress-theme-matatag/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme1.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.woothemes.com/2008/11/typebased/">Typebased</a> [<a href="http://www.woothemes.com/demo/?t=15">Demo</a>]</p>
<p><a href="http://www.woothemes.com/2008/11/typebased/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme2.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.woothemes.com/2009/02/irresistible/">Irresistible</a> [<a href="http://www.woothemes.com/demo/?t=25">Demo</a>]</p>
<p><a href="http://www.woothemes.com/2009/02/irresistible/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme3.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.woothemes.com/2008/11/blogtheme/">BlogTheme</a> [<a href="http://www.woothemes.com/demo/?t=18">Demo</a>]</p>
<p><a href="http://www.woothemes.com/2008/11/blogtheme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme4.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.themelab.com/2008/04/01/colourise-free-wordpress-theme-38/">Colourise</a> [<a href="http://demo.themelab.com/index.php?wptheme=Colourise">Demo</a>]</p>
<p><a href="http://www.themelab.com/2008/04/01/colourise-free-wordpress-theme-38/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme5.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.cellarheat.com/?page_id=24">Cellar Heat</a> [<a href="http://www.cellarheat.com/images/cellar-heat-light-screen.jpg">Demo</a>]</p>
<p><a href="http://www.cellarheat.com/?page_id=24"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme6.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://samk.ca/freebies/pixeled-wordpress-theme-in-blue/">Pixeled</a> [<a href="http://wp-themes.com/pixeled/">Demo</a>]</p>
<p><a href="http://samk.ca/freebies/pixeled-wordpress-theme-in-blue/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme7.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://wefunction.com/2008/07/free-theme-outdoorsy/">Outdoorsy</a> [<a href="http://wefunction.com/themes/index.php?preview_theme=outdoorsy">Demo</a>]</p>
<p><a href="http://wefunction.com/2008/07/free-theme-outdoorsy/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme8.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.ezwpthemes.com/templates/vector-flower.html">Vector Flower</a> [<a href="http://www.ezwpthemes.com/examples/?wptheme=Vector%20Flower&amp;cat=120">Demo</a>]</p>
<p><a href="http://www.ezwpthemes.com/templates/vector-flower.html"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme9.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.paddsolutions.com/wordpress-theme-magaling/">Magaling</a> [<a href="http://www.freewordpresstheme.info/go/4373demo">Demo</a>]</p>
<p><a href="http://www.paddsolutions.com/wordpress-theme-magaling/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme10.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/">WildDreams</a> [<a href="http://wilddreams.productivedreams.com/">Demo</a>]</p>
<p><a href="http://www.productivedreams.com/wilddreams-another-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme11.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://wpesp.com/portfolio/">WPESP</a> [<a href="http://demo.wpesp.com/portfolio/">Demo</a>]</p>
<p><a href="http://wpesp.com/portfolio/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme11a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.blogohblog.com/wordpress-theme-portfolio-press/">Portfolio Press</a> [<a href="http://wpthemes.blogohblog.net/index.php?wptheme=Portfolio+Press">Demo</a>]</p>
<p><a href="http://www.blogohblog.com/wordpress-theme-portfolio-press/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme12.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.ezwpthemes.com/templates/black-pearl.html">Black Pearl</a> [<a href="http://www.ezwpthemes.com/examples/?wptheme=Black%20Pearl&amp;cat=19">Demo</a>]</p>
<p><a href="http://www.ezwpthemes.com/templates/black-pearl.html"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme13.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.paddsolutions.com/wordpress-theme-masinop/">Masinop</a> [<a href="http://www.paddsolutions.com/wpthemes/switch.php?template=masinop">Demo</a>]</p>
<p><a href="http://www.paddsolutions.com/wordpress-theme-masinop/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme14.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://wordpress.bustatheme.com/coda/">WP CODA</a> [<a href="http://wordpress.bustatheme.com/coda/">Demo</a>]</p>
<p><a href="http://wordpress.bustatheme.com/coda/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme15.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://ericulous.com/2008/09/09/wp-theme-google-chrome/">Google Chrome</a> [<a href="http://ericulous.com/demo/index.php?wptheme=GoogleChrome">Demo</a>]</p>
<p><a href="http://ericulous.com/2008/09/09/wp-theme-google-chrome/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme16.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://forthelose.org/themes/miniblog/miniblog-a-premium-wordpress-theme/">miniBlog</a> [<a href="http://forthelose.org/themes/miniblog/miniblog-a-premium-wordpress-theme/">Demo</a>]</p>
<p><a href="http://forthelose.org/themes/miniblog/miniblog-a-premium-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme17.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.chris-wallace.com/2009/01/05/absynthe-wordpress-theme/">Absynthe</a> [<a href="http://www.chris-wallace.com/?theme=Absynthe">Demo</a>]</p>
<p><a href="http://www.chris-wallace.com/2009/01/05/absynthe-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme18.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.skinpress.com/bluediamond-wp-theme/">BlueDiamond</a> [<a href="http://www.skinpress.com/demo/index.php?wptheme=BlueDiamond">Demo</a>]</p>
<p><a href="http://www.skinpress.com/bluediamond-wp-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme19.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.skinpress.com/blackpower-theme/">BlackPower</a> [<a href="http://www.skinpress.com/demo/index.php?wptheme=BlackPower">Demo</a>]</p>
<p><a href="http://www.skinpress.com/blackpower-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme20.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://themehybrid.com/themes/old-school">Old School</a> [<a href="http://themehybrid.com/demo/old-school">Demo</a>]</p>
<p><a href="http://themehybrid.com/themes/old-school"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.amypink.com/themes/nami-wordpress-theme/">Nami</a></p>
<p><a href="http://www.amypink.com/themes/nami-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://freebiesdock.com/freemium-wordpress-theme/">Freemium</a> [<a href="http://demo.freebiesdock.com/">Demo</a>]</p>
<p><a href="http://freebiesdock.com/freemium-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21b.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://eliseos.net/destacadas/wp-theme-wp-fholio/">Fholio</a> [<a href="http://eliseos.net/demo/index.php?wptheme=Wp+Fholio">Demo</a>]</p>
<p><a href="http://eliseos.net/destacadas/wp-theme-wp-fholio/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21c.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://thinkdesignblog.com/free-wordpress-theme-versatility-lite.htm">Versatility Lite</a> [<a href="http://test2.think-four.com/">Demo</a>]</p>
<p><a href="http://thinkdesignblog.com/free-wordpress-theme-versatility-lite.htm"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21d.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://webrevolutionary.com/curious/">Curious</a> [<a href="http://webrevolutionary.com/curious-demo/">Demo</a>]</p>
<p><a href="http://webrevolutionary.com/curious/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21e.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://thinkdesignblog.com/free-wordpress-theme-sketchytheme.htm">Sketchy</a> [<a href="http://sketchytheme.think-four.com/">Demo</a>]</p>
<p><a href="http://thinkdesignblog.com/free-wordpress-theme-sketchytheme.htm"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21f.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://webrevolutionary.com/sanddollar/">Sanddollar</a> [<a href="http://webrevolutionary.com/sanddollar-demo/">Demo</a>]</p>
<p><a href="http://webrevolutionary.com/sanddollar/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme21g.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://wp-content-themes.com/typogriph-a-free-fluid-wordpress-27-theme/150">Typogriph</a> [<a href="http://www.gavagai.ro/blues/">Demo</a>]</p>
<p><a href="http://wp-content-themes.com/typogriph-a-free-fluid-wordpress-27-theme/150"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme65.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.templatelite.com/coffee-desk-free-wordpress-theme/">Coffee Desk</a> [<a href="http://www.templatelite.com/coffee-desk-free-wordpress-theme/">Demo</a>]</p>
<p><a href="http://wp-content-themes.com/typogriph-a-free-fluid-wordpress-27-theme/150"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme65a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://lucianmarin.com/page/themes/">Andrea 0.3</a> [<a href="http://lucianmarin.com/test/index.php?wptheme=Andrea">Demo</a>]</p>
<p><a href="http://lucianmarin.com/page/themes/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme65b.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<h3>Magazine &amp; Corporate Themes</h3>
<p><a href="http://www.elevatethemes.com/themes/skyye-news-theme/">Skyye News</a> [<a href="http://www.elevatethemes.com/demos/skyye-news">Demo</a>]</p>
<p><a href="http://www.elevatethemes.com/themes/skyye-news-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme22.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.woothemes.com/2009/04/meta-morphosis/">Meta-Morphosis</a> [<a href="http://www.woothemes.com/demo/?t=31">Demo</a>]</p>
<p><a href="http://www.woothemes.com/2009/04/meta-morphosis/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme23.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/18/thelatest-theme/">TheLatest</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=TheLatest+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/18/thelatest-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme24.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://web2feel.com/scarlett-theme/">Scarlett</a> [<a href="http://web2feel.com/scarlett/">Demo</a>]</p>
<p><a href="http://web2feel.com/scarlett-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme25.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/27/turnout-mag-theme/">TurnOut Mag</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Turn+Out+Mag">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/27/turnout-mag-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme26.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/25/meganews-theme/">MegaNews</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Meganews+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/25/meganews-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme27.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/24/schemermag-theme/">SchemerMag</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Schemertype+Mag">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/24/schemermag-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme28.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/23/transgravita-theme/">TransGravita</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=TransGravita+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/23/transgravita-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme29.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/22/chara-theme/">Chara</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Chara+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/22/chara-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme30.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/18/marcelle-theme/">Marcelle</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Marcelle+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/18/marcelle-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme31.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/11/red-accent-theme/">Red Accent</a> [<a href="http://wpthemedesigner.com/demo/?wptheme=Red+Accent">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/11/red-accent-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme32.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/03/04/parchment-theme/">Parchment</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Parchment+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/03/04/parchment-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme33.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/02/24/themepod-for-wordpress/">ThemePod</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=The+Themepod">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/02/24/themepod-for-wordpress/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme34.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/02/12/the-pinnacle-theme/">The Pinnacle</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=Pinnacle+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/02/12/the-pinnacle-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme35.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.wpthemedesigner.com/2009/02/09/the-mmozine-theme/">MMOZINE</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=The+MMOZine">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/02/09/the-mmozine-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme36.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://web2feel.com/gamezine-theme/">Gamezine</a> [<a href="http://web2feel.com/gamezine/">Demo</a>]</p>
<p><a href="http://web2feel.com/gamezine-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme37.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://web2feel.com/milano-theme/">Milano</a> [<a href="http://www.web2feel.com/milano/">Demo</a>]</p>
<p><a href="http://web2feel.com/milano-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme38.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://web2feel.com/zinmag-tribune/">Zinmag Tribune</a> [<a href="http://web2feel.com/tribune">Demo</a>]</p>
<p><a href="http://web2feel.com/zinmag-tribune/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme39.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://bizzartic.com/2009/03/29/isotherm-news-magazine-wordpress-theme/">IsoTherm News</a> [<a href="http://bizzartic.com/bizzthemes/isotherm/">Demo</a>]</p>
<p><a href="http://bizzartic.com/2009/03/29/isotherm-news-magazine-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme40.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://topwpthemes.com/corporatemag-theme/">CorporateMag</a> [<a href="http://wpjunction.com/themes/corporate/">Demo</a>]</p>
<p><a href="http://topwpthemes.com/corporatemag-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme41.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://themetation.com/2008/09/11/crybook/">CryBook</a> [<a href="http://themetation.com/demo/crybook/">Demo</a>]</p>
<p><a href="http://themetation.com/2008/09/11/crybook/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme42.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<h3>Photoblog &amp; Gallery Themes</h3>
<p><a href="http://www.wpthemedesigner.com/2009/02/24/photomadness-theme/">PhotoMadness</a> [<a href="http://wpthemedesigner.com/demo/index.php?wptheme=PhotoMadness+Theme">Demo</a>]</p>
<p><a href="http://www.wpthemedesigner.com/2009/02/24/photomadness-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme46a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.woothemes.com/2008/10/snapshot/">Snapshot</a> [<a href="http://www.woothemes.com/demo/snapshot/?style=default">Demo</a>]</p>
<p><a href="http://www.woothemes.com/2008/10/snapshot/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme46.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://allancole.com/wordpress/themes/autofocus/">AutoFocus</a> [<a href="http://allancole.com/themes/index.php?wptheme=AutoFocus">Demo</a>]</p>
<p><a href="http://allancole.com/wordpress/themes/autofocus/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme47.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.futurosity.com/wordpress-theme-futurosity-aperio-prototype">Futurosity Aperio Prototype</a> [<a href="http://www.futurosity.com/wpthemes/index.php?wptheme=Futurosity+Aperio+Prototype">Demo</a>]</p>
<p><a href="http://www.futurosity.com/wordpress-theme-futurosity-aperio-prototype"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme48.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://redworks.sk/wp-themes/linquist/">Linquist</a> [<a href="http://linquist.redworks.sk/">Demo</a>]</p>
<p><a href="http://redworks.sk/wp-themes/linquist/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme49.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://pupungbp.erastica.com/wordpress-theme/fotofolio-wordpress-theme-for-your-online-portfolio/">Fotofolio</a> [<a href="http://demo.wordspop.com/fotofolio/">Demo</a>]</p>
<p><a href="http://pupungbp.erastica.com/wordpress-theme/fotofolio-wordpress-theme-for-your-online-portfolio/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme50.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://labs.paulicio.us/viewport/">Viewport</a> [<a href="http://labs.paulicio.us/viewport/">Demo</a>]</p>
<p><a href="http://labs.paulicio.us/viewport/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme51.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.press75.com/folio-elements/">Folio Elements</a> [<a href="http://www.press75.com/demos/folio-elements/">Demo</a>]</p>
<p><a href="http://www.press75.com/folio-elements/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme52.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.whoismanu.com/iq2-wordpress-photoblog-theme/">iQ2</a> [<a href="http://www.whoismanu.com/iq2-demo/">Demo</a>]</p>
<p><a href="http://www.whoismanu.com/iq2-wordpress-photoblog-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme53.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://graphpaperpress.com/2008/06/02/f8-lite-portfolio-theme-for-wordpress/">F8 Lite</a> [<a href="http://graphpaperpress.com/demo/f8/index.php?wptheme=f8%20lite">Demo</a>]</p>
<p><a href="http://graphpaperpress.com/2008/06/02/f8-lite-portfolio-theme-for-wordpress/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme55a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://5thirtyone.com/the-unstandard">The Unstandard WP 2.7</a> [<a href="http://theunstandard.5thirtyone.com/">Demo</a>]</p>
<p><a href="http://5thirtyone.com/the-unstandard"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme55b.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<h3>Minimal &amp; Clean Themes</h3>
<p><a href="http://pupungbp.erastica.com/wordpress-theme/magzine-magazine-style-free-wordpress-theme/">MagZine</a> [<a href="http://designmagz.com/">Demo</a>]</p>
<p><a href="http://pupungbp.erastica.com/wordpress-theme/magzine-magazine-style-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme56.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://cssey.com/html/equilibrium-a-simple-clean-magazine-wordpress-theme/">Equilibrium</a> [<a href="http://equilibrium.madebyon.com/">Demo</a>]</p>
<p><a href="http://cssey.com/html/equilibrium-a-simple-clean-magazine-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme57.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://granimpetu.com/fontella/">Fontella</a> [<a href="http://granimpetu.com/themesdemo/">Demo</a>]</p>
<p><a href="http://granimpetu.com/fontella/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme58.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://granimpetu.com/themes-para-wordpress/">Minimo</a> [<a href="http://granimpetu.com/themesdemo/">Demo</a>]</p>
<p><a href="http://granimpetu.com/themes-para-wordpress/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme59.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://andreamignolo.com/oulipo/">Oulipo</a> [<a href="http://labs.andreamignolo.com/oulipo">Demo</a>]</p>
<p><a href="http://andreamignolo.com/oulipo/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme60.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://jimbarraud.com/2009/03/19/manifest/">Manifest</a> [<a href="http://demo.jimbarraud.com/manifest/">Demo</a>]</p>
<p><a href="http://jimbarraud.com/2009/03/19/manifest/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme61.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://rodrigogalindez.com/themes/modern-clix/">Modern Clix</a> [<a href="http://rodrigogalindez.com/themes/modern-clix/">Demo</a>]</p>
<p><a href="http://rodrigogalindez.com/themes/modern-clix/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme62.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://webrevolutionary.com/sharpfolio/">Sharpfolio</a> [<a href="http://webrevolutionary.com/sharpfolio-demo/">Demo</a>]</p>
<p><a href="http://webrevolutionary.com/sharpfolio/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme63.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://tr.im/satorii">Sator-ii</a> [<a href="http://lab.yukei.net/wp-demo/">Demo</a>]</p>
<p><a href="http://tr.im/satorii"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme64.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.nyutech.com/2009/02/undedicated-free-minimal-wordpress_27.html">Undedicated</a> [<a href="http://undedicated.uuuq.com/">Demo</a>]</p>
<p><a href="http://www.nyutech.com/2009/02/undedicated-free-minimal-wordpress_27.html"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme66.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://midmodesign.com/news/general/our-special-wordpress-theme/">Clean Home</a> [<a href="http://midmodesign.com/news/general/our-special-wordpress-theme/">Demo</a>]</p>
<p><a href="http://midmodesign.com/news/general/our-special-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme67.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://konstruktors.com/WordPressTheme/SansserifRacer">Sans-serif Racer</a> [<a href="http://konstruktors.com/uploads/WordPressTheme/sans-serif-racer-preview.png">Demo</a>]</p>
<p><a href="http://konstruktors.com/WordPressTheme/SansserifRacer"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme69.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.amypink.com/themes/lead-wordpress-theme/">Lead</a></p>
<p><a href="http://www.amypink.com/themes/lead-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme70.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://5thirtyone.com/grid-focus">Grid Focus 2.7</a> [<a href="http://demo.5thirtyone.com/">Demo</a>]</p>
<p><a href="http://5thirtyone.com/grid-focus"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme70a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://cardeo.ca/2008/cardeo-minimal-wordpress-theme/">Cardeo</a> [<a href="http://cardeo.ca/cardeo-themes/cardeo-minimal/">Demo</a>]</p>
<p><a href="http://cardeo.ca/2008/cardeo-minimal-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme43.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://leonpaternoster.com/2009/02/introducing-the-gigantic-theme-for-wordpress/">Gigantic</a> [<a href="http://leonpaternoster.com/gigantic_demo">Demo</a>]</p>
<p><a href="http://leonpaternoster.com/2009/02/introducing-the-gigantic-theme-for-wordpress/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme43a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<h3>Smashing Magazine Themes</h3>
<p><a href="http://www.smashingmagazine.com/2009/03/10/download-imprezz-a-free-wordpress-theme/">Imprezz</a> [<a href="http://media2.smashingmagazine.com/images/imprezz-wordpress-theme/preview.jpg">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2009/03/10/download-imprezz-a-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme71.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2009/02/18/compositio-clean-beautiful-and-free-wordpress-theme/">Compositio</a> [<a href="http://designdisease.com/preview/compositio">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2009/02/18/compositio-clean-beautiful-and-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme72.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2009/01/28/vintage-and-blues-wordpress-themes/">Vintage and Blues</a> [<a href="http://dev1.agriya.com/wpthemes/?wptheme=wordpress-brown">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2009/01/28/vintage-and-blues-wordpress-themes/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme73.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/12/02/ascii-one-a-free-wordpress-theme/">ASCII One</a> [<a href="http://sandbox.oddwebthings.com/asciione/">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/12/02/ascii-one-a-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme74.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/11/10/black-magic-a-free-wordpress-theme/">Black Magic</a> [<a href="http://media2.smashingmagazine.com/images/black-magic-wordpress-theme/preview.jpg">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/11/10/black-magic-a-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme75.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/10/30/color-paper-a-free-wordpress-theme/">Color Paper</a> [<a href="http://freethemelayouts.com/blog/index.php?wptheme=Color%20Paper">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/10/30/color-paper-a-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme76.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/10/20/cellar-heat-a-free-wordpress-theme/">Cellar Heat</a> [<a href="http://www.cellarheat.com/">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/10/20/cellar-heat-a-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme77.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/10/01/simply-ornate-a-free-wordpress-theme/">Simply Ornate</a> [<a href="http://honker.evaneckard.com/">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/10/01/simply-ornate-a-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme78.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/09/08/agregado-a-free-wordpress-theme/">Agregado</a> [<a href="http://www.darrenhoyt.com/demo/agregado/">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/09/08/agregado-a-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme79.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/08/20/notepad-chaos-a-free-wordpress-theme/">Notepad Chaos</a> [<a href="http://media2.smashingmagazine.com/images/notepad-wordpress-theme/chaos.jpg">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/08/20/notepad-chaos-a-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme80.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/07/16/wordpress-fun-a-free-wordpress-theme/">Wordpress Fun</a> [<a href="http://media2.smashingmagazine.com/images/wordpress-theme-fun/wp-fun-large.jpg">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/07/16/wordpress-fun-a-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme80a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2009/02/23/magazeen-free-magazine-look-wordpress-theme/">Magazeen</a> [<a href="http://demo.wefunction.com/?wptheme=Magazeen">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2009/02/23/magazeen-free-magazine-look-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme80b.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2009/05/04/download-gallery-a-free-wordpress-theme/">Gallery</a> [<a href="http://mixcss.com/">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2009/05/04/download-gallery-a-free-wordpress-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme80c.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/">Infinity</a> [<a href="http://media2.smashingmagazine.com/images/infinity-wordpress-theme/preview-large.png">Demo</a>]</p>
<p><a href="http://www.smashingmagazine.com/2008/08/08/infinity-a-free-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme80d.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<h3>Something different…</h3>
<p><a href="http://wordprezzie.com/changing-room/">Changing Room</a> [<a href="http://changingroom.wordprezzie.com/">Demo</a>]</p>
<p><a href="http://wordprezzie.com/changing-room/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme81.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://netizensmedia.com/2009/04/20/introducing-undercon-better-sweeter-customizable-wordpress-domain-parking-theme/">UnderCon</a> [<a href="http://undercon.netizensmedia.com/">Demo</a>]</p>
<p><a href="http://netizensmedia.com/2009/04/20/introducing-undercon-better-sweeter-customizable-wordpress-domain-parking-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme82.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.thekingcart.com/2008/10/02/crafty-cart-free-wordpress-ecommerce-plugin-theme/">Crafty Cart</a> [<a href="http://demo.billionstudio.com/?wptheme=Crafty%20Cart">Demo</a>]</p>
<p><a href="http://www.thekingcart.com/2008/10/02/crafty-cart-free-wordpress-ecommerce-plugin-theme/"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme83.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://nreklam.onlayn.org/wp-dashboardlike/">WP-Dashboard Like</a> [<a href="http://nreklam.com/">Demo</a>]</p>
<p><a href="http://nreklam.onlayn.org/wp-dashboardlike/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme83a.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.amypink.com/themes/city-dreams-wordpress-theme/">City Dreams</a></p>
<p><a href="http://www.amypink.com/themes/city-dreams-wordpress-theme/"><img style="display: inline;" src="http://media2.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme83b.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
<p><a href="http://www.hellbiscuit.com/?p=86">HELLBISCUIT</a> [<a href="http://themes.hellbiscuit.com/">Demo</a>]</p>
<p><a href="http://www.hellbiscuit.com/?p=86"><img style="display: inline;" src="http://media1.smashingmagazine.com/images/100-fresh-wordpress-themes/wptheme83e.jpg" alt="Free Wordpress themes" width="480" height="281" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/free-premium-wordpress-themes_119.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free CSS Themes</title>
		<link>http://ersinacar.com/free-css-themes_101.html</link>
		<comments>http://ersinacar.com/free-css-themes_101.html#comments</comments>
		<pubDate>Tue, 12 May 2009 15:01:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=101</guid>
		<description><![CDATA[I made a quick list for Free CSS theme sites.
Here is the list;
http://www.freecsstemplates.org/css-templates/
http://www.free-css-templates.com/
http://www.freecsstemplates.org/
http://csscreme.com/freecsstemplates/
http://www.templatemo.com/
http://www.solucija.com/free-templates
]]></description>
			<content:encoded><![CDATA[<p>I made a quick list for Free CSS theme sites.<br />
Here is the list;</p>
<p>http://www.freecsstemplates.org/css-templates/</p>
<p>http://www.free-css-templates.com/</p>
<p>http://www.freecsstemplates.org/</p>
<p>http://csscreme.com/freecsstemplates/</p>
<p>http://www.templatemo.com/</p>
<p>http://www.solucija.com/free-templates</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/free-css-themes_101.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Heatmap for your website</title>
		<link>http://ersinacar.com/heatmap-for-your-website_81.html</link>
		<comments>http://ersinacar.com/heatmap-for-your-website_81.html#comments</comments>
		<pubDate>Tue, 21 Apr 2009 19:18:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[heatmap]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=81</guid>
		<description><![CDATA[ClickHeat is a visual heatmap of clicks on a HTML page, showing hot and cold click zones.

Requirements
- on the browser&#8217;s client: Javascript (tested on Firefox 2.0, Internet Explorer 6 and 7, Konqueror&#8230;)
- on the server: either Linux or Windows (since ClickHeat 1.3 release), Apache or Lighttpd (other may work fine), PHP, the graphic library GD2 [...]]]></description>
			<content:encoded><![CDATA[<p>ClickHeat is a visual heatmap of clicks on a HTML page, showing hot and cold click zones.</p>
<p><img class="size-full wp-image-82 alignright" title="clickheat-screenshot" src="http://ersinacar.com/wp-content/uploads/2009/04/clickheat-screenshot.png" alt="clickheat-screenshot" width="248" height="183" /><br />
<strong>Requirements</strong><br />
- on the browser&#8217;s client: Javascript (tested on Firefox 2.0, Internet Explorer 6 and 7, Konqueror&#8230;)<br />
- on the server: either Linux or Windows (since ClickHeat 1.3 release), Apache or Lighttpd (other may work fine), PHP, the graphic library GD2 (PNG support needed).</p>
<h2>Features</h2>
<p>- Low logging activity: a very few function calls to log a click, no server load rise should be noticed (have a look at <a href="http://www.labsmedia.com/clickheat/performance.html">Performance &amp; optimization</a>)<br />
- A keyword is used to define the page upon Javascript code load, allowing you to group same pages.<br />
- Screen sizes and browsers are logged, making possible the tracking of liquid CSS layouts (100% used width).</p>
<p><a href="http://sourceforge.net/project/showfiles.php?group_id=181196">Download</a></p>
<p><a href="http://www.labsmedia.com/clickheat/index.php">Demo</a> (user:demo pwd:demo)</p>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/heatmap-for-your-website_81.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 50 CSS Menus and Navigations</title>
		<link>http://ersinacar.com/top-50-css-menus-and-navigations_72.html</link>
		<comments>http://ersinacar.com/top-50-css-menus-and-navigations_72.html#comments</comments>
		<pubDate>Mon, 20 Apr 2009 09:15:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bookmarks]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://ersinacar.com/?p=72</guid>
		<description><![CDATA[Navigation menus have to be intuitive, precise and easy-to-use. One simple, basic principle, which is common for all kinds of nav bars you would ever want to use for your projects.
You&#8217;ll find 50 user-friendly CSS based menu and navigation solutions.

11 CSS navigation menus : at Exploding Boy
12 more CSS Navigation Menus. : at Exploding Boy
14 [...]]]></description>
			<content:encoded><![CDATA[<p>Navigation menus have to be intuitive, precise and easy-to-use. One simple, basic principle, which is common for all kinds of nav bars you would ever want to use for your projects.</p>
<p>You&#8217;ll find 50 user-friendly CSS based menu and navigation solutions.</p>
<ol>
<li><a href="http://www.exploding-boy.com/2005/12/15/free-css-navigation-designs/">11 CSS navigation menus</a> : at Exploding Boy</li>
<li><a href="http://www.exploding-boy.com/2005/12/21/more-free-css-navigation-menu-designs/">12 more CSS Navigation Menus.</a> : at Exploding Boy</li>
<li><a href="http://www.exploding-boy.com/2005/12/29/14-free-vertical-css-menus/">14 Free Vertical CSS Menus</a> : at Exploding Boy</li>
<li><a href="http://www.duoh.com/csstutorials/2levelmenu/index.html">2-level horizontal navigation</a> : demo at Duoh</li>
<li><a href="http://evolt.org/article/Absolute_Lists_Alternatives_to_Divs/20/60268/index.html">Absolute Lists: Alternatives to Divs</a> : An approach of using lists instead of divs at evolt</li>
<li><a href="http://www.simplebits.com/bits/tab_rollovers.html">Accessible Image-Tab Rollovers</a> : demo at Simplebits</li>
<li><a href="http://www.aplus.co.yu/adxmenu/examples/">ADxMenu</a> : multiple menu examples at aPlus<span id="more-72"></span></li>
<li><a href="http://www.cssplay.co.uk/menus/drop_variation.html">A drop-down theme</a> : at CSS Play</li>
<li><a href="http://www.websiteoptimization.com/speed/tweak/bookend/">Bookend Lists: Using CSS to Float a Masthead</a> : at WebSiteOptimization</li>
<li><a href="http://www.simplebits.com/bits/bulletproof_slants.html">Bulletproof Slants</a> : demo at Simplebits</li>
<li><a href="http://24ways.org/advent/centered-tabs-with-css">Centered Tabs with CSS</a> : at 24ways</li>
<li><a href="http://www.simplebits.com/notebook/2004/07/18/clickable.html">Clickable Link Backgrounds</a> : A bulletproof unordered list of links, each with a unique (purely decorative) left-aligned icon that is referenced with CSS ; but that is also clickable.</li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=97480">Create a Teaser Thumbnail List Using CSS: Part 1</a> : lists of items made up of a title, short description, and thumbnail.</li>
<li><a href="http://builder.com.com/5100-6371_14-5810696.html">Creating Indented Navigation Lists</a> : A multi-level indented list</li>
<li><a href="http://builder.com.com/5100-6371_14-5810687.html">Creating Multicolumn Lists</a> : at Builder.com</li>
<li><a href="http://solardreamstudios.com/learn/css/cssmenus">cssMenus &#8211; 4 Level Deep List Menu</a> : at SolarDreamStudios</li>
<li><a href="http://www.sitepoint.com/article/accessible-menu-tabs">CSS and Round Corners: Build Accessible Menu Tabs</a> : at SitePoint</li>
<li><a href="http://odyniec.net/articles/css-based-tabbed-menu/">CSS-Based Tabbed Menu</a> : a simple tabbed menu.</li>
<li><a href="http://www.nundroo.com/navigation">CSS-based Navigation</a> : demo at Nundroo</li>
<li><a href="http://mikecherim.com/gbcms_xml/news_page.php?id=4">CSS: Double Lists</a> : A single list that appears in two columns</li>
<li><a href="http://www.simplebits.com/bits/minitabs.html">CSS Mini Tabs (the UN-tab, tab)</a> : demo at Simplebits</li>
<li><a href="http://www.cssplay.co.uk/menus/drop_examples.html">CSS only dropdown menu</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/example_flyout.html">CSS only flyout menus</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/fly_drop.html">CSS only flyout/dropdown menu</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/flyout_horizontal.html">CSS only flyout menu with transparency</a> : at CSS Play</li>
<li><a href="http://www.cssplay.co.uk/menus/vertical_slide.html">CSS only vertical sliding menu</a> : at CSS Play</li>
<li><a href="http://www.alistapart.com/articles/multicolumnlists">CSS Swag: Multi-Column Lists</a> : at A List Apart</li>
<li><a href="http://unraveled.com/projects/css_tabs/">CSS Tabs</a> : tabs without any images</li>
<li><a href="http://www.web-graphics.com/mtarchive/000852.php">CSS Tabs</a> : list of various tab solutions</li>
<li><a href="http://www.kalsey.com/tools/csstabs/">CSS tabs with Submenus</a> : at Kalsey.</li>
<li><a href="http://www.destroydrop.com/javascripts/tree/">dTree Navigation Menu</a> :  Javascripts Tree at Destroydrop</li>
<li><a href="http://www.maxdesign.com.au/presentation/definition/">Definition lists &#8211; misused or misunderstood?</a> : appropriate uses of definition lists</li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=27F87">Do You Want To Do That With CSS? &#8211; Multiple Column Lists</a> : multi-column lists.</li>
<li><a href="http://www.alistapart.com/articles/horizdropdowns/">Drop-Down Menus, Horizontal Style</a> : at A List Apart</li>
<li><a href="http://web-graphics.com/mtarchive/001573.php">Float Mini tabs</a> : at Web-Graphics</li>
<li><a href="http://novitskisoftware.com/articles/MultiColumnLists.asp">Flowing a List Across Multiple Columns</a> : A table without using tables.</li>
<li><a href="http://www.e-lusion.com/design/menu/#1">Free Menu Designs V 1.1</a> : ready-to-download block menusat e-lusion</li>
<li><a href="http://www.twinhelix.com/dhtml/fsmenu/">FreeStyle Menus</a> : XHTML compliant, CSS-formatted menu script at TwinHelix</li>
<li><a href="http://www.cssplay.co.uk/menus/hidden.html">Hidden tab menu</a> : at CSS Play</li>
<li><a href="http://www.webreference.com/programming/css_style/index.html">How to Style a Definition List with CSS</a> : at WebReference</li>
<li><a href="http://www.webreference.com/programming/css_style2/">How to Style an Unordered List with CSS</a> : at WebReference</li>
<li><a href="http://www.webreference.com/programming/css_lists/index.html">How to Use CSS to Position Horizontal Unordered Lists</a> : at WebReference</li>
<li><a href="http://www.alistapart.com/articles/hybrid/">Hybrid CSS Dropdowns</a> : at a List Apart</li>
<li><a href="http://web-graphics.com/mtarchive/001557.php">Inline Mini Tabs</a> : at Web-Graphics</li>
<li><a href="http://photomatt.net/scripts/intellimenu">Intelligent Menus</a> : CSS and PHP menu at PhotoMatt.net</li>
<li><a href="http://www.456bereastreet.com/lab/inverted_tabs/">Inverted Sliding Doors Tabs</a> : at 456BereaStreet</li>
<li><a href="http://www.csscreator.com/menu/multimenu.php">Light Weight Multi Level Menu</a> : at CssCreator</li>
<li><a href="http://www.communitymx.com/content/article.cfm?cid=01DB3">List Display Problems In Explorer For Windows</a> : list hack for IE</li>
<li><a href="http://css.maxdesign.com.au/listamatic/">Listamatic</a> : simple lists; various styles.</li>
<li><a href="http://css.maxdesign.com.au/listamatic2/">Listamatic2</a> : nexted lists; various styles</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://ersinacar.com/top-50-css-menus-and-navigations_72.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
