<?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>blogfreakz.com &#187; design</title>
	<atom:link href="http://blogfreakz.com/tag/design/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:40:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Create a Heart Shape With Pure CSS3</title>
		<link>http://blogfreakz.com/tutorial/create-a-heart-shape-with-pure-css3/</link>
		<comments>http://blogfreakz.com/tutorial/create-a-heart-shape-with-pure-css3/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 05:40:03 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[heart]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Valentine's day]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25062</guid>
		<description><![CDATA[For celebrating Valentine&#8217;s Day, this is a great tutorial from Web Froze where you get to use pure CSS3 to create a nice heart shape for your web design graphics. Below are the following codes to achieve this. CSS .heart-shape { position: relative; width: 100px; height: 90px; margin:10px 0px; } .heart-shape:before, .heart-shape:after { position: absolute; [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>For celebrating Valentine&#8217;s Day, this is a great tutorial from <a href="http://www.webfroze.com" target="_blank"><strong>Web Froze </strong></a> where you get to use pure CSS3 to create a nice heart shape for your web design graphics. Below are the following codes to achieve this.</p>
<p><strong>CSS</strong></p>
<pre><span style="color: #003366;">.heart-shape {</span></pre>
<pre><span style="color: #003366;">position: relative;</span></pre>
<pre><span style="color: #003366;">width: 100px;</span></pre>
<pre><span style="color: #003366;">height: 90px;</span></pre>
<pre><span style="color: #003366;">margin:10px 0px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.heart-shape:before,</span></pre>
<pre><span style="color: #003366;">.heart-shape:after {</span></pre>
<pre><span style="color: #003366;">position: absolute;</span></pre>
<pre><span style="color: #003366;">content: "";</span></pre>
<pre><span style="color: #003366;">left: 50px;</span></pre>
<pre><span style="color: #003366;">top: 0;</span></pre>
<pre><span style="color: #003366;">width: 50px;</span></pre>
<pre><span style="color: #003366;">height: 80px;</span></pre>
<pre><span style="color: #003366;">background: #fd2d8a;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius: 50px 50px 0 0;</span></pre>
<pre><span style="color: #003366;">border-radius: 50px 50px 0 0;</span></pre>
<pre><span style="color: #003366;">-webkit-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-moz-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-ms-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-o-transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">transform: rotate(-45deg);</span></pre>
<pre><span style="color: #003366;">-webkit-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">-moz-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">-ms-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">-o-transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">transform-origin: 0 100%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.heart-shape:after {</span></pre>
<pre><span style="color: #003366;">left: 0;</span></pre>
<pre><span style="color: #003366;">-webkit-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-moz-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-ms-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-o-transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">transform: rotate(45deg);</span></pre>
<pre><span style="color: #003366;">-webkit-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">-moz-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">-ms-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">-o-transform-origin: 100% 100%;</span></pre>
<pre><span style="color: #003366;">transform-origin :100% 100%;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<p><strong> </strong></p>
<p><strong>HTML</strong></p>
<pre>
<pre><span style="color: #003366;">&lt;div class ="heart shape"&gt;&lt;/div&gt;</span></pre>
<p><strong> </strong></pre>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-a-heart-shape-with-pure-css3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30+ Creative Heart Logos</title>
		<link>http://blogfreakz.com/inspiration/30-creative-heart-logos/</link>
		<comments>http://blogfreakz.com/inspiration/30-creative-heart-logos/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 05:28:43 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Design News]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Graphic]]></category>
		<category><![CDATA[heart]]></category>
		<category><![CDATA[logos]]></category>
		<category><![CDATA[Valentine]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25019</guid>
		<description><![CDATA[Valentine’s Day is slowly creeping closer and for graphic designers, visual artists and the like, this is the time to incorporate the season&#8217;s theme into their designs. Just as pumpkins are to Halloween and a gifts are to Christmas, a heart is to Valentine&#8217;s Day. And on that note, here are 36 cleverly designed heart [...]]]></description>
			<content:encoded><![CDATA[<p>Valentine’s Day is slowly creeping closer and for graphic designers, visual artists and the like, this is the time to incorporate the season&#8217;s theme into their designs.</p>
<p>Just as pumpkins are to Halloween and a gifts are to Christmas, a heart is to Valentine&#8217;s Day. And on that note, here are 36 cleverly designed heart logos to inspire all artists and designers! Hope these samples will help you come up with more ideas this Happy Hearts&#8217; day.</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25020" title="Beat Love" src="http://blogfreakz.com/wp-content/uploads/2012/02/Beat-Love-347x250.jpg" alt="Beat Love 347x250 30+ Creative Heart Logos" width="347" height="250" /><strong><a href="http://www.logogala.com/gallery/details/beat-love/">Beat Love</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25021" title="Beloved" src="http://blogfreakz.com/wp-content/uploads/2012/02/Beloved-324x250.jpg" alt="Beloved 324x250 30+ Creative Heart Logos" width="324" height="250" /><a href="http://logopond.com/gallery/detail/139811">Beloved</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25022" title="Cloud of Love" src="http://blogfreakz.com/wp-content/uploads/2012/02/Cloud-of-Love.jpg" alt="Cloud of Love 30+ Creative Heart Logos" width="312" height="215" /><a href="http://logopond.com/gallery/detail/79164">Cloud of Love</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25023" title="Heartbreak" src="http://blogfreakz.com/wp-content/uploads/2012/02/Heartbreak.jpg" alt="Heartbreak 30+ Creative Heart Logos" width="327" height="234" /><a href="http://logopond.com/gallery/detail/37239">Heart Break</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25024" title="Heartbeats" src="http://blogfreakz.com/wp-content/uploads/2012/02/Heartbeats-327x250.jpg" alt="Heartbeats 327x250 30+ Creative Heart Logos" width="327" height="250" /><a href="http://logopond.com/gallery/detail/50209">Heart Beats</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25025" title="Love Clicks" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Clicks-326x250.jpg" alt="Love Clicks 326x250 30+ Creative Heart Logos" width="326" height="250" /><a href="http://logopond.com/gallery/detail/94239">Love Clicks</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25027" title="Love Biites" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Biites-341x250.jpg" alt="Love Biites 341x250 30+ Creative Heart Logos" width="341" height="250" /><a href="http://logopond.com/gallery/detail/70492">Love Biites</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25028" title="Love Heart" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Heart-325x250.jpg" alt="Love Heart 325x250 30+ Creative Heart Logos" width="325" height="250" /><a href="http://www.brandcrowd.com/logo-design/details/12056">Love Heart</a></strong></p>
<p style="text-align: center;">Love heart is a brand symbol wherein the letters LOVE form a heart and is ideal for any company wishing to have a heart in its logo. Available in 3 color schemes.</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25029" title="Love Idea" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Idea-325x250.jpg" alt="Love Idea 325x250 30+ Creative Heart Logos" width="325" height="250" /><a href="http://brandcrowd.com/logo-design/details/16332">Love Idea</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25030" title="LoveLicks" src="http://blogfreakz.com/wp-content/uploads/2012/02/LoveLicks.jpg" alt="LoveLicks 30+ Creative Heart Logos" width="320" height="229" /><a href="http://www.brandcrowd.com/logo-design/details/25392">Love Licks</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25031" title="NaturaLove" src="http://blogfreakz.com/wp-content/uploads/2012/02/NaturaLove-326x250.jpg" alt="NaturaLove 326x250 30+ Creative Heart Logos" width="326" height="250" /><a href="http://www.brandcrowd.com/logo-design/details/13201">NaturaLove</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25032" title="ThinkLove" src="http://blogfreakz.com/wp-content/uploads/2012/02/ThinkLove-327x250.jpg" alt="ThinkLove 327x250 30+ Creative Heart Logos" width="327" height="250" /><a href="http://logopond.com/gallery/detail/49858">Think Love</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25033" title="What Is Love." src="http://blogfreakz.com/wp-content/uploads/2012/02/What-Is-Love.-330x250.jpg" alt="What Is Love. 330x250 30+ Creative Heart Logos" width="330" height="250" /><a href="http://logopond.com/gallery/detail/45382">What Is Love?</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25034" title="Datetender" src="http://blogfreakz.com/wp-content/uploads/2012/02/Datetender.jpg" alt="Datetender 30+ Creative Heart Logos" width="332" height="216" /><a href="http://logopond.com/gallery/detail/39159">Datetender</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25035" title="Match" src="http://blogfreakz.com/wp-content/uploads/2012/02/Match-328x250.jpg" alt="Match 328x250 30+ Creative Heart Logos" width="328" height="250" /><a href="http://logopond.com/gallery/detail/94126">Match</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25036" title="Lovehook" src="http://blogfreakz.com/wp-content/uploads/2012/02/Lovehook-327x250.jpg" alt="Lovehook 327x250 30+ Creative Heart Logos" width="327" height="250" /><a href="http://logopond.com/gallery/detail/79008">Love Hook</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25037" title="LoveLink" src="http://blogfreakz.com/wp-content/uploads/2012/02/LoveLink-326x250.jpg" alt="LoveLink 326x250 30+ Creative Heart Logos" width="326" height="250" /><a href="http://logopond.com/gallery/detail/79987">Love Link</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25039" title="PenPals" src="http://blogfreakz.com/wp-content/uploads/2012/02/PenPals-262x250.jpg" alt="PenPals 262x250 30+ Creative Heart Logos" width="262" height="250" /><a href="http://logopond.com/gallery/detail/52491">Pen Pals</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25040" title="LoveGeek" src="http://blogfreakz.com/wp-content/uploads/2012/02/LoveGeek-324x250.jpg" alt="LoveGeek 324x250 30+ Creative Heart Logos" width="324" height="250" /><a href="http://www.brandcrowd.com/logo-design/details/8714">LoveGeek</a> </strong></p>
<p style="text-align: center;">Available in 3 color schemes.</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25041" title="Heart Bomb" src="http://blogfreakz.com/wp-content/uploads/2012/02/heart-Bomb-325x250.jpg" alt="heart Bomb 325x250 30+ Creative Heart Logos" width="325" height="250" /><strong><a href="http://www.brandcrowd.com/logo-design/details/2921">Heart Bomb</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25042" title="Bee Heart" src="http://blogfreakz.com/wp-content/uploads/2012/02/Bee-heart-327x250.jpg" alt="Bee heart 327x250 30+ Creative Heart Logos" width="327" height="250" /><a href="http://brandstack.com/logo-design/details/9547">Bee Heart</a> </strong></p>
<p style="text-align: center;">Beeheart is ideal for a blog site or any other business site. Available in 3 design schemes.</p>
<p style="text-align: center;"><strong><a href="http://brandstack.com/logo-design/details/9547"></a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25043" title="Bird Lover" src="http://blogfreakz.com/wp-content/uploads/2012/02/Bird-Lover-328x250.jpg" alt="Bird Lover 328x250 30+ Creative Heart Logos" width="328" height="250" /><strong><a href="http://logopond.com/gallery/detail/87003">Bird Lover</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25044" title="Bugluv" src="http://blogfreakz.com/wp-content/uploads/2012/02/Bugluv.jpg" alt="Bugluv 30+ Creative Heart Logos" width="340" height="238" /><a href="http://www.logofaves.com/2009/02/bugluv/">Bugluv</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25045" title="Butterfly Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/Buterfly-Hearts-328x250.jpg" alt="Buterfly Hearts 328x250 30+ Creative Heart Logos" width="328" height="250" /><a href="http://logopond.com/gallery/detail/77396">Butterfly Hearts</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25047" title="Pig Love" src="http://blogfreakz.com/wp-content/uploads/2012/02/Pig-Love-325x250.jpg" alt="Pig Love 325x250 30+ Creative Heart Logos" width="325" height="250" /><a href="http://www.brandcrowd.com/logo-design/details/22691">Pig Love</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25048" title="Cloved" src="http://blogfreakz.com/wp-content/uploads/2012/02/Cloved-346x250.jpg" alt="Cloved 346x250 30+ Creative Heart Logos" width="346" height="250" /><strong><a href="http://dribbble.com/shots/216038-Cloved">Cloved</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25049" title="Love Clip" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Clip-326x250.jpg" alt="Love Clip 326x250 30+ Creative Heart Logos" width="326" height="250" /><a href="http://logopond.com/gallery/detail/43950">Love Clip</a> </strong></p>
<p style="text-align: center;">Love Clip comes from the concept of bending two clips to form a heart.</p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25050" title="Love Clip 2" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Clip-2-325x250.jpg" alt="Love Clip 2 325x250 30+ Creative Heart Logos" width="325" height="250" /><strong><a href="http://logopond.com/gallery/detail/84330">Love Clip (2)</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25051" title="Cardiologic" src="http://blogfreakz.com/wp-content/uploads/2012/02/Cardiologic.jpg" alt="Cardiologic 30+ Creative Heart Logos" width="321" height="235" /><a href="http://logopond.com/gallery/detail/27262">Cardiologic</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25052" title="Love Systems" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Systems-328x250.jpg" alt="Love Systems 328x250 30+ Creative Heart Logos" width="328" height="250" /><a href="http://logopond.com/gallery/detail/43259">Love Systems</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25053" title="Write Lover" src="http://blogfreakz.com/wp-content/uploads/2012/02/Write-Lover-302x250.jpg" alt="Write Lover 302x250 30+ Creative Heart Logos" width="302" height="250" /><a href="http://logopond.com/gallery/detail/125421">Write Lover</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25054" title="ILove2Write" src="http://blogfreakz.com/wp-content/uploads/2012/02/ILove2Write-324x250.jpg" alt="ILove2Write 324x250 30+ Creative Heart Logos" width="324" height="250" /><a href="http://logopond.com/gallery/detail/61765">ILove2write</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-full wp-image-25055" title="Love Sushi" src="http://blogfreakz.com/wp-content/uploads/2012/02/Love-Sushi.jpg" alt="Love Sushi 30+ Creative Heart Logos" width="307" height="206" /><a href="http://logopond.com/gallery/detail/89915">Love Sushi</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25056" title="Game Lover" src="http://blogfreakz.com/wp-content/uploads/2012/02/Game-Lover-326x250.jpg" alt="Game Lover 326x250 30+ Creative Heart Logos" width="326" height="250" /><a href="http://logopond.com/gallery/detail/114612">Game Lover</a></strong></p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25057" title="Sex Lovers" src="http://blogfreakz.com/wp-content/uploads/2012/02/Sex-lovers-327x250.jpg" alt="Sex lovers 327x250 30+ Creative Heart Logos" width="327" height="250" /><a href="http://logopond.com/gallery/detail/82931">Sex Lovers</a></strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25058" title="Bitter Love" src="http://blogfreakz.com/wp-content/uploads/2012/02/Bitter-Love-327x250.jpg" alt="Bitter Love 327x250 30+ Creative Heart Logos" width="327" height="250" /></strong><a href="http://www.brandcrowd.com/logo-design/details/10198"><strong>Bitter Lo</strong>ve</a></p>
<p style="text-align: center;">A brand symbol ideal for a food and beverages industry, games and retail. Available in 3 color schemes.</p>
<p><a href="http://www.brandcrowd.com/logo-design/details/10198"></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/inspiration/30-creative-heart-logos/" title="Buterfly">Buterfly</a></li>
<li><a href="http://blogfreakz.com/inspiration/30-creative-heart-logos/" title="css html5 tutorial">css html5 tutorial</a></li>
<li><a href="http://blogfreakz.com/inspiration/30-creative-heart-logos/" title="jquery plugin carousel">jquery plugin carousel</a></li>
<li><a href="http://blogfreakz.com/inspiration/30-creative-heart-logos/" title="love heart">love heart</a></li>
<li><a href="http://blogfreakz.com/inspiration/30-creative-heart-logos/" title="love logos">love logos</a></li>
<li><a href="http://blogfreakz.com/inspiration/30-creative-heart-logos/" title="love sushi">love sushi</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/inspiration/30-creative-heart-logos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Glassy Text Effect with Photoshop</title>
		<link>http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/</link>
		<comments>http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 09:41:55 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[effect]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24996</guid>
		<description><![CDATA[There are numerous online Photoshop tutorials about text effects but if you want that sleek and glassy effect, chances are you’ll find only a few of them. So I’m going to share with you a very cool glass text effect tutorial by the guys at 2ExpertDesign that would only take around 30 minutes to make. [...]]]></description>
			<content:encoded><![CDATA[<p>There are numerous online Photoshop tutorials about text effects but if you want that sleek and glassy effect, chances are you’ll find only a few of them. So I’m going to share with you a very cool glass text effect tutorial by the guys at <a href="http://www.2expertsdesign.com/author/2expert" target="_blank"><strong>2ExpertDesign</strong></a> that would only take around 30 minutes to make.</p>
<p style="text-align: center;"><a href="http://www.2expertsdesign.com/tutorials/tutorial-make-an-awesome-glassy-text-effect-in-30-minutes)" target="_blank"><img class="size-full wp-image-24998" title="Glass" src="http://blogfreakz.com/wp-content/uploads/2012/02/Glass.jpg" alt="Glass Create a Glassy Text Effect with Photoshop" width="418" height="279" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Click on the above image to see the tutorial.</strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>This is fast, easy, and well worth the effort. Get ready to be creative with your text &#8212; grab the <a href="www.2expertsdesign.com/_downloads/Glossy%20Text%20Effect%20-%202ExpertsDesign.com.rar" target="_blank"><strong>PSD file</strong></a> now!</p>
<p><strong> </strong><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/" title="how to make text effect in photoshop">how to make text effect in photoshop</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/" title="photoshop glass tutorial">photoshop glass tutorial</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/" title="glass text photoshop">glass text photoshop</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/" title="photoshop writing glass">photoshop writing glass</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-a-glassy-text-effect-wit-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Improve as a Graphic Designer</title>
		<link>http://blogfreakz.com/inspiration/how-to-improve-as-a-graphic-designer/</link>
		<comments>http://blogfreakz.com/inspiration/how-to-improve-as-a-graphic-designer/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 10:33:59 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Creativity]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24906</guid>
		<description><![CDATA[Stagnation is one thing that stifles most artists and designers when they’ve reached their plateau. It happens when they rely too much on their comfort zone that it simply stops them from improving, learning, and exploring new techniques and styles. Obviously this causes them to lag behind current changes especially in the fast-paced world of [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>Stagnation is one thing that stifles most artists and designers when they’ve reached their plateau. It happens when they rely too much on their comfort zone that it simply stops them from improving, learning, and exploring new techniques and styles. Obviously this causes them to lag behind current changes especially in the fast-paced world of graphic and web design.</p>
<p><img class="aligncenter size-medium wp-image-24907" title="1" src="http://blogfreakz.com/wp-content/uploads/2012/02/122-285x175.jpg" alt="122 285x175 How to Improve as a Graphic Designer" width="285" height="175" /></p>
<p>This can threaten one’s career. Why? Because the field changes so rapidly that today’s design can be obsolete tomorrow, literally. So if you’re a graphic designer, you always have to be open to changes and embrace the latest trends. Don’t limit yourself with what you already know, and if you’ve found your comfort zone, then strive to learn new designs and techniques, improve your style continuously and push yourself out of that zone.</p>
<p>This is what web designer <a href="http://www.noupe.com/author/tom-ross" target="_blank"><strong>Tom Ross</strong></a> argues against popular belief, that designers should <em>never</em> find their style. It could backfire later on in their careers. So to prevent it, here are useful tips on how to improve and <a href="http://www.noupe.com/design/how-to-improve-as-a-graphic-designer.html" target="_blank"><strong>become a better designer</strong></a> and could save them for a major professional and creative setback.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/inspiration/how-to-improve-as-a-graphic-designer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20+ Free Valentine Photoshop Brush Sets</title>
		<link>http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/</link>
		<comments>http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 04:52:00 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[brushes]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[free downloads]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[Valentine]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24871</guid>
		<description><![CDATA[It’s the love month once again, so I’ve picked up free lovely brush sets that would  help you create a festive Valentine design. Click on the image to grab the brushes and spread some love! Valentine Floral Brushes &#160; Valentine Floral Heart Brushes &#160; Vector Style Hearts Brushes &#160; Valentine PSD &#160; Valentine Day Heart [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>It’s the love month once again, so I’ve picked up free lovely brush sets that would  help you create a festive Valentine design.</p>
<p>Click on the image to grab the brushes and spread some love!</p>
<p><strong> </strong></p>
<p style="text-align: center;"><a href="http://designersbrush.deviantart.com/art/Valentine-floral-brush-110326143"><img class="aligncenter size-medium wp-image-24872" title="Floral Brushes" src="http://blogfreakz.com/wp-content/uploads/2012/02/116-285x175.jpg" alt="116 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Valentine Floral Brushes</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://designersbrush.deviantart.com/art/Valentine-floral-heart-brush-110128084"><img class="aligncenter size-medium wp-image-24874" title="Floral Heart Brushes" src="http://blogfreakz.com/wp-content/uploads/2012/02/212-285x175.jpg" alt="212 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Valentine Floral Heart Brushes</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://melemel.deviantart.com/art/Vector-Style-Hearts-48683023"><img class="aligncenter size-medium wp-image-24875" title="Vector Style Hearts " src="http://blogfreakz.com/wp-content/uploads/2012/02/31-285x175.jpg" alt="31 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Vector Style Hearts Brushes</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://xmandypandyx.deviantart.com/art/Valentine-PSD-112488981"><img class="aligncenter size-medium wp-image-24876" title="Valentine PSD" src="http://blogfreakz.com/wp-content/uploads/2012/02/41-285x175.jpg" alt="41 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Valentine PSD</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://ceomyris.deviantart.com/art/Heart-Brushes-71512285"><img class="aligncenter size-medium wp-image-24877" title="Valentine Day Heart" src="http://blogfreakz.com/wp-content/uploads/2012/02/51-285x175.jpg" alt="51 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Valentine Day Heart Brushes</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://mcbadshoes.deviantart.com/art/My-Heart-Brushes-111697213"><img class="aligncenter size-medium wp-image-24878" title="My Heart" src="http://blogfreakz.com/wp-content/uploads/2012/02/117-275x175.jpg" alt="117 275x175 20+ Free Valentine Photoshop Brush Sets" width="275" height="175" /></a>My Heart Brushes</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://chiaopi.deviantart.com/art/Heart-Fractal-Brushes-76738905"><img class="aligncenter size-medium wp-image-24879" title="Heart Fractal" src="http://blogfreakz.com/wp-content/uploads/2012/02/213-285x175.jpg" alt="213 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Heart Fractal Brushes</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://crucibelle.deviantart.com/art/Valentine-Brush-Set-28149311"><img class="aligncenter size-medium wp-image-24880" title="Valentine Brush Set" src="http://blogfreakz.com/wp-content/uploads/2012/02/32-285x175.jpg" alt="32 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Valentine Brush Set for Photoshop</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://hawksmont.com/blog/photoshop-brushes-hearts/"><img class="aligncenter size-medium wp-image-24881" title="Photoshop Brushes Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/42-285x175.jpg" alt="42 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Photoshop Brushes Hearts</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://hawksmont.deviantart.com/art/Valentine-Glow-Hearts-152441312"><img class="aligncenter size-medium wp-image-24882" title="Valentine Glow Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/52-285x175.jpg" alt="52 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a>Valentine Glow Hearts </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://hawksmont.deviantart.com/art/Valentine-Glow-Hearts-152441312"><strong> </strong></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://szuia.deviantart.com/art/hearts-fractal-brushes-75488324"><strong> </strong></a><strong><a href="http://szuia.deviantart.com/art/hearts-fractal-brushes-75488324"><img class="aligncenter size-medium wp-image-24884" title="Fractal Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/118-276x175.jpg" alt="118 276x175 20+ Free Valentine Photoshop Brush Sets" width="276" height="175" /></a></strong><strong>Hearts Fractal Brush</strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong><a href="http://verie.deviantart.com/art/Candy-Heart-Brushes-5789878"><img class="aligncenter size-medium wp-image-24885" title="Candy Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/214-248x175.jpg" alt="214 248x175 20+ Free Valentine Photoshop Brush Sets" width="248" height="175" /></a>Candy Hearts Brushes</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://xcassiex24.deviantart.com/art/Heart-Brushes-87196676"><img class="aligncenter size-medium wp-image-24886" title="Heart Brushes" src="http://blogfreakz.com/wp-content/uploads/2012/02/33-285x175.jpg" alt="33 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Heart Brushes</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.brusheezy.com/brush/1089-Heart-Stamps"><img class="aligncenter size-full wp-image-24887" title="Heart Stamps" src="http://blogfreakz.com/wp-content/uploads/2012/02/43.jpg" alt="43 20+ Free Valentine Photoshop Brush Sets" width="241" height="65" /></a><strong>Heart Stamps</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.brusheezy.com/Brushes/1709-Damned-Hearts"><img class="aligncenter size-medium wp-image-24888" title="Damned Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/53-285x175.jpg" alt="53 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Damned Hearts</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://differentxdreamz.deviantart.com/art/True-Love-Heart-Brushes-117532605"><img class="aligncenter size-medium wp-image-24889" title="True Love" src="http://blogfreakz.com/wp-content/uploads/2012/02/119-285x175.jpg" alt="119 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>True Love Heart Brush Set</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://evanngelinek.deviantart.com/art/Love-brushes-110231657"><img class="aligncenter size-medium wp-image-24890" title="Love Brushes" src="http://blogfreakz.com/wp-content/uploads/2012/02/215-285x175.jpg" alt="215 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Love Brushes</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://sunira.deviantart.com/art/Hearts-Photoshop-Brushes-15045474"><img class="aligncenter size-medium wp-image-24891" title="Hearts Photoshop Brushes" src="http://blogfreakz.com/wp-content/uploads/2012/02/34-285x175.jpg" alt="34 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Hearts Photoshop Brushes</strong></p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://sunira.deviantart.com/art/Hearts-Photoshop-Brushes-15045474"><strong> </strong></a><a href="http://alcoholicwhine.deviantart.com/art/Hearts-In-Motion-28858245"><img class="aligncenter size-medium wp-image-24892" title="Hearts In Motion" src="http://blogfreakz.com/wp-content/uploads/2012/02/44-285x175.jpg" alt="44 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Hearts in Motion</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://mouritsada-stock.deviantart.com/art/Brush-Pack-Hearts-79979796"><img class="aligncenter size-medium wp-image-24893" title="Brush-Pack Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/54-285x175.jpg" alt="54 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Brush-Pack Hearts</strong></p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://mouritsada-stock.deviantart.com/art/Brush-Pack-Hearts-79979796"><strong> </strong></a><a href="http://diamara.deviantart.com/art/Valentine-Mega-Art-Brush-Set-149950139"><img class="aligncenter size-medium wp-image-24895" title="Valentine Mega Art" src="http://blogfreakz.com/wp-content/uploads/2012/02/120-274x175.jpg" alt="120 274x175 20+ Free Valentine Photoshop Brush Sets" width="274" height="175" /></a><strong>Valentine Mega Art Brush Set</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://ruthenia-alba.deviantart.com/art/Brushset-15-ValentineScraps-2-112076271"><img class="aligncenter size-medium wp-image-24896" title="Valentine Scraps" src="http://blogfreakz.com/wp-content/uploads/2012/02/216-285x175.jpg" alt="216 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Valentine Scraps 2</strong></p>
<p style="text-align: center;"><strong><br />
</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://ruthenia-alba.deviantart.com/art/Brushset-15-ValentineScraps-2-112076271"><strong> </strong></a><a href="http://roula33.deviantart.com/art/Valentine-corners-282428287"><img class="aligncenter size-medium wp-image-24897" title="Valentine Corners" src="http://blogfreakz.com/wp-content/uploads/2012/02/35-285x175.jpg" alt="35 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Valentine Corners</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://tatsuyasaverem.deviantart.com/art/Photoshop-Brushes-Hearts-39503043"><img class="aligncenter size-medium wp-image-24898" title="Photoshop Brushes Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/45-285x175.jpg" alt="45 285x175 20+ Free Valentine Photoshop Brush Sets" width="285" height="175" /></a><strong>Photoshop Brushes- Hearts</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://tatsuyasaverem.deviantart.com/art/Photoshop-Brushes-Hearts-39503043"><strong> </strong></a></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/" title="46 heart brushes set 53">46 heart brushes set 53</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/" title="brushes photoshop">brushes photoshop</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/" title="coffee vector free">coffee vector free</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/" title="font photoshop">font photoshop</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/" title="photoshop">photoshop</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/photoshop-tutorial/20-free-valentine-photoshop-brush-sets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Creative And Uniquely Designed Navigation Menus</title>
		<link>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/</link>
		<comments>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 14:47:48 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[navigation]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24675</guid>
		<description><![CDATA[A well-designed navigation bar leaves a good impression on first-time visitors. Here’s a list of navigation menu designs that would make you go “why didn’t I think of that?” Small Stone Recordings – Here&#8217;s a perfect example of incorporating your site&#8217;s theme with the design. This immediately gives your site’s visitors an idea of what [...]]]></description>
			<content:encoded><![CDATA[<p>A well-designed navigation bar leaves a good impression on first-time visitors. Here’s a list of navigation menu designs that would make you go “why didn’t I think of that?”</p>
<p><a href="http://www.smallstone.com/"><strong> </strong></a></p>
<p><img class="aligncenter size-medium wp-image-24676" title="Small Stone Recordings " src="http://blogfreakz.com/wp-content/uploads/2012/01/126-285x175.jpg" alt="126 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.smallstone.com/"><strong>Small Stone Recordings</strong></a> – Here&#8217;s a perfect example of incorporating your site&#8217;s theme with the   design. This immediately gives your site’s visitors an idea of what  your  site and business is all about.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24677" title="Loodo" src="http://blogfreakz.com/wp-content/uploads/2012/01/216-285x121.jpg" alt="216 285x121 10 Creative And Uniquely Designed Navigation Menus" width="285" height="121" /></p>
<p><a href="http://www.loodo.com.br/"><strong>Loodo</strong></a> – Now here’s a design that would appeal to anyone who enjoys playing traditional board games.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24678" title="Fantasy Cartography" src="http://blogfreakz.com/wp-content/uploads/2012/01/311-285x175.jpg" alt="311 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.fantasy-cartography.com/"><strong>Fantasy Cartography</strong></a> – Talk about creating a site map! Here’s a very original approach in navigation menu design by Robin C. Kuprella. The areas of the site are linked directly on the home page map. Clicking on a link will change the content in the central content box.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24679" title="Gene's Sausage Shop" src="http://blogfreakz.com/wp-content/uploads/2012/01/412-195x175.jpg" alt="412 195x175 10 Creative And Uniquely Designed Navigation Menus" width="195" height="175" /></p>
<p><a href="http://www.genessausageshop.com/"><strong>Genes Sausage Shop</strong></a> – Here’s another good example of incorporating the site’s theme into the navigation menu design.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24680" title="NickAd2007" src="http://blogfreakz.com/wp-content/uploads/2012/01/511-285x175.jpg" alt="511 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.nickad.com/"><strong>NickAd</strong></a> – This one may seem against every design principle of an effective navigation menu but it gets points for creativity and innovation. As one review site puts it, it’s “probably not the most practical menu available but certainly one of the coolest.” I agree; a first-time visitor may be caught off-guard by the seemingly unintuitive design but trust me, it will wow you.</p>
<p><img class="aligncenter size-medium wp-image-24681" title="CL Designs" src="http://blogfreakz.com/wp-content/uploads/2012/01/65-285x175.jpg" alt="65 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.cldesignz.com/"><strong>CL Designz</strong></a> – The main navigation menu at the top of the page may not look like much but you will surely love and appreciate its secondary menu located on the right side. It is unique, fun and definitely practical.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24682" title="Manic" src="http://blogfreakz.com/wp-content/uploads/2012/01/74-177x175.jpg" alt="74 177x175 10 Creative And Uniquely Designed Navigation Menus" width="177" height="175" /></p>
<p><a href="http://wearemanic.com/"><strong>Manic Design</strong></a> – This one’s definitely one of my favorites on this list. It is nicely positioned on the left and all of the options are always visible, animated, and best of all, responsive!</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24684" title="C&amp;C Coffee" src="http://blogfreakz.com/wp-content/uploads/2012/01/83-285x175.jpg" alt="83 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://candccoffee.com/"><strong>C &amp; C Coffee</strong></a> – There’s just something visually pleasing and amusing about its fun Flash-based menu as it playfully dangles links from the top of the page.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24685" title="Alexarts" src="http://blogfreakz.com/wp-content/uploads/2012/01/94-285x175.jpg" alt="94 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.alexarts.ru/en/index.html"><strong>Alexarts</strong></a> – True to its nature, this graphic arts site uses menu items that appeal to modern aesthetics that are also fun to interact with.</p>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24686" title="Tennessee Trains &amp; Highways" src="http://blogfreakz.com/wp-content/uploads/2012/01/103-285x175.jpg" alt="103 285x175 10 Creative And Uniquely Designed Navigation Menus" width="285" height="175" /></p>
<p><a href="http://www.tntrailsandbyways.com/"><strong>Tennessee Trains &amp; Byways</strong></a> – Don’t let the discreet menu at the top of the page fool you &#8212; Tennessee Trains &amp; Byways is in contention for the largest dropdown menu in the world. It manages to combine old-world elements with modern design, resulting in a charming and highly interactive menu and page layout.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/" title="creative navigation bar">creative navigation bar</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/10-creative-and-uniquely-designed-navigation-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>25 Professional High-Quality Free Fonts</title>
		<link>http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/</link>
		<comments>http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 03:07:51 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Font]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[fonts download]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24580</guid>
		<description><![CDATA[Finding high-quality fonts is quite hard since there are tons out there that are mostly ‘fillers’. But the following list of free professional fonts is excellent for graphic art and web design use, and I hope you find it helpful. Muli Code Pro Claire Hand Knubbel Rokkitt Speedway FF Sero Anivers Calluna Sans &#160; Geotica [...]]]></description>
			<content:encoded><![CDATA[<p>Finding high-quality fonts is quite hard since there are tons out there that are mostly ‘fillers’. But the following list of free professional fonts is excellent for graphic art and web design use, and I hope you find it helpful.</p>
<p style="text-align: center;"><a href="http://www.fontsquirrel.com/fonts/muli" target="_blank"><strong>Muli</strong></a></p>
<p style="text-align: center;"><a href="http://smashinghub.com/wp-content/uploads/2011/10/Muli.jpg"><img class="aligncenter size-medium wp-image-24582" title="Muli" src="http://blogfreakz.com/wp-content/uploads/2012/01/119-285x175.jpg" alt="119 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://fontfabric.com/code-pro/" target="_blank"><strong>Code Pro</strong></a></p>
<p style="text-align: center;"><a href="http://fontfabric.com/wp-content/themes/unstandard/images/codepro_01.gif"><img class="aligncenter size-medium wp-image-24583" title="Code Pro" src="http://blogfreakz.com/wp-content/uploads/2012/01/210-285x175.jpg" alt="210 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.behance.net/gallery/aClaire-Handa-the-new-team-scope-free-font/1945173" target="_blank"><strong>Claire Hand</strong></a></p>
<p style="text-align: center;"><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2011/08/quality-free-fonts/claire-hand-fresh-free-fonts-2011.jpg"><img class="aligncenter size-medium wp-image-24584" title="Claire Hand" src="http://blogfreakz.com/wp-content/uploads/2012/01/36-285x175.jpg" alt="36 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.behance.net/gallery/KNUBBEL-Font/2111810   " target="_blank"><strong>Knubbel</strong></a></p>
<p style="text-align: center;"><a href="http://smashinghub.com/wp-content/uploads/2011/10/Knubbel.jpg"><img class="aligncenter size-medium wp-image-24585" title="Knubbel" src="http://blogfreakz.com/wp-content/uploads/2012/01/46-285x175.jpg" alt="46 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.fontsquirrel.com/fonts/rokkitt" target="_blank"><strong>Rokkitt</strong></a></p>
<p style="text-align: center;"><a href="http://ct.mob0.com/Fonts/CharacterMap/Rokkitt.png"><img class="aligncenter size-medium wp-image-24586" title="Rokkitt" src="http://blogfreakz.com/wp-content/uploads/2012/01/56-285x175.jpg" alt="56 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://qaqyythaeditions.deviantart.com/art/AE-Speedway-Font-257537336"><strong>Speedway</strong></a></p>
<p style="text-align: center;"><a href="http://www.webdesign.org/img_articles/20874/ae_speedway_font.jpg"><img class="aligncenter size-medium wp-image-24588" title="Speedway" src="http://blogfreakz.com/wp-content/uploads/2012/01/120-285x175.jpg" alt="120 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.behance.net/gallery/FF-Sero-%28Medium-Weight-Free%29/1829645" target="_blank"><strong>FF Sero</strong></a></p>
<p><strong><a href="http://behance.vo.llnwd.net/profiles/86802/projects/1829645/899a053e26dee769f3106937744ad426.png"><img class="aligncenter size-medium wp-image-24589" title="FF Sero" src="http://blogfreakz.com/wp-content/uploads/2012/01/211-285x175.jpg" alt="211 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></strong><a href="http://www.exljbris.com/anivers.html" target="_blank"><strong> </strong></a></p>
<p style="text-align: center;"><a href="http://www.exljbris.com/anivers.html" target="_blank"><strong>Anivers</strong></a></p>
<p style="text-align: center;"><a href="http://www.tweetmydesign.com/wp-content/themes/tweetmydesign/scripts/timthumb.php?src=http://www.tweetmydesign.com/wp-content/uploads/2009/08/anivers.png&amp;h=280&amp;w=560&amp;zc=1"><img class="aligncenter size-medium wp-image-24590" title="Anivers" src="http://blogfreakz.com/wp-content/uploads/2012/01/37-285x175.jpg" alt="37 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.exljbris.com/callunasans.html" target="_blank"><strong>Calluna Sans</strong></a></p>
<p style="text-align: center;"><a href="http://www.exljbris.com/images/calluna_1.gif"><img class="aligncenter size-medium wp-image-24591" title="Calluna Sans" src="http://blogfreakz.com/wp-content/uploads/2012/01/47-285x175.jpg" alt="47 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a><strong> </strong></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://www.exljbris.com/geotica.html" target="_blank"><strong>Geotica</strong></a></p>
<p><a href="http://www.fontspring.com/utils/family_poster.php?foundry=exljbris&amp;family=geotica&amp;poster=geotica-3.png"><img class="aligncenter size-medium wp-image-24592" title="Geotica" src="http://blogfreakz.com/wp-content/uploads/2012/01/57-285x175.jpg" alt="57 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a><a href="http://www.exljbris.com/museo.html" target="_blank"><strong> </strong></a></p>
<p style="text-align: center;"><a href="http://www.exljbris.com/museo.html" target="_blank"><strong>Museo</strong></a></p>
<p style="text-align: center;"><strong><a href="http://www.exljbris.com/images/museo_11.gif"><img class="aligncenter size-medium wp-image-24595" title="Museo" src="http://blogfreakz.com/wp-content/uploads/2012/01/121-285x175.jpg" alt="121 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a><br />
</strong></p>
<p style="text-align: center;"><a href="http://www.exljbris.com/museoslab.html" target="_blank"><strong>Museo Slab</strong></a></p>
<p style="text-align: center;"><strong><a href="http://imjustcreative.com/wp-content/uploads/ImJustCreative-220.jpg"><img class="aligncenter size-medium wp-image-24596" title="Museo Slab" src="http://blogfreakz.com/wp-content/uploads/2012/01/212-285x163.jpg" alt="212 285x163 25 Professional High Quality Free Fonts" width="285" height="163" /></a><br />
</strong></p>
<p style="text-align: center;"><a href="http://www.exljbris.com/museosans.html" target="_blank"><strong>Museo Sans</strong></a></p>
<p style="text-align: center;"><a href="http://media.smashingmagazine.com/images/fresh-free-typefaces/museo_sans_4.gif"><img class="aligncenter size-medium wp-image-24598" title="Museo Sans" src="http://blogfreakz.com/wp-content/uploads/2012/01/38-285x171.jpg" alt="38 285x171 25 Professional High Quality Free Fonts" width="285" height="171" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.fontsquirrel.com/fonts/Clutchee" target="_blank"><strong>Clutchee</strong></a></p>
<p style="text-align: center;"><strong><a href="http://www.huzzer.com/wp-content/uploads/2010/04/Best-WordPress-Font-For-Logo-8.jpg"><img class="aligncenter size-medium wp-image-24599" title="Clutchee" src="http://blogfreakz.com/wp-content/uploads/2012/01/48-285x156.jpg" alt="48 285x156 25 Professional High Quality Free Fonts" width="285" height="156" /></a><br />
</strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.theleagueofmoveabletype.com/chunk" target="_blank"><strong>Chunk</strong></a></p>
<p style="text-align: center;"><strong><a href="http://www.fontsquirrel.com/utils/load_image.php?filename=fonts/613/chunk_showing.jpg"><img class="aligncenter size-medium wp-image-24600" title="Chunk" src="http://blogfreakz.com/wp-content/uploads/2012/01/58-285x175.jpg" alt="58 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a><br />
</strong></p>
<p style="text-align: center;"><a href="http://new.myfonts.com/fonts/stereotypes/st-transmission/" target="_blank"><strong>St Transmission</strong></a></p>
<p style="text-align: center;"><a href="http://www.allwebdesigninfo.com/wp-content/uploads/2010/01/Free%20Fonts/St%20Transmission%20%96%20200%20Thin.jpg"><img class="aligncenter size-medium wp-image-24611" title="St Transmission" src="http://blogfreakz.com/wp-content/uploads/2012/01/122-285x175.jpg" alt="122 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.fontsquirrel.com/fonts/Delicious" target="_blank"><strong>Delicious</strong></a></p>
<p style="text-align: center;"><a href="http://cdn.ourtutscom.netdna-cdn.com/wp-content/uploads/cufon-fonts/delicious-font.jpg"><img class="aligncenter size-medium wp-image-24612" title="Delicious" src="http://blogfreakz.com/wp-content/uploads/2012/01/213-285x175.jpg" alt="213 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://fontfabric.com/cube-02-font/" target="_blank"><strong>Cube 02</strong></a></p>
<p style="text-align: center;"><a href="http://lh4.ggpht.com/_hVfE2qcyzXU/TUcL7Tp_TFI/AAAAAAAABvA/FEkjPdZX4Ww/best-free-fonts-5.jpg"><img class="aligncenter size-medium wp-image-24613" title="Cube 02" src="http://blogfreakz.com/wp-content/uploads/2012/01/39-285x175.jpg" alt="39 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.theleagueofmoveabletype.com/league-gothic" target="_blank"><strong>League Gothic</strong></a></p>
<p style="text-align: center;"><a href="http://imjustcreative.com/wp-content/uploads/league-gothic-29.png"><img class="aligncenter size-medium wp-image-24615" title="League Gothic" src="http://blogfreakz.com/wp-content/uploads/2012/01/410-285x175.jpg" alt="410 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.tenbytwenty.com/jura.php" target="_blank"><strong>Jura</strong></a></p>
<p style="text-align: center;"><a href="http://visionwidget.com/images/2011albums/2011-04/0413/Jura-font.jpg"><img class="aligncenter size-medium wp-image-24617" title="Jura" src="http://blogfreakz.com/wp-content/uploads/2012/01/59-285x175.jpg" alt="59 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://26plus-zeichen.de/fonts/melbourne/" target="_blank"><strong>Melbourne</strong></a></p>
<p style="text-align: center;"><a href="http://26plus-zeichen.de/wp-content/uploads/teaser_melb1.gif"><img class="aligncenter size-medium wp-image-24618" title="Melbourne" src="http://blogfreakz.com/wp-content/uploads/2012/01/123-285x175.jpg" alt="123 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><a href="http://www.tenbytwenty.com/nevis.php" target="_blank"><strong>Nevis</strong></a></p>
<p style="text-align: center;"><a href="http://www.tenbytwenty.com/images/nevis.jpg"><img class="aligncenter size-medium wp-image-24620" title="Nevis" src="http://blogfreakz.com/wp-content/uploads/2012/01/214-285x175.jpg" alt="214 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://new.myfonts.com/fonts/stereotypes/st-ryde/" target="_blank"><strong>St Ryde </strong></a></p>
<p style="text-align: center;"><a href="http://new.myfonts.com/fonts/stereotypes/st-ryde/"></a><a href="http://cdn1.1stwebdesigner.com/wp-content/uploads/2010/09/StRydenewfreshfonts.png"><img class="aligncenter size-medium wp-image-24621" title="St Ryde" src="http://blogfreakz.com/wp-content/uploads/2012/01/310-285x175.jpg" alt="310 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.vissol.co.uk/mavenpro/" target="_blank"><strong>Maven Pro</strong></a></p>
<p style="text-align: center;"><a href="http://www.fontsquirrel.com/utils/font_specimen.php?font=1009/MavenPro-Regular.otf&amp;case=mixed"><img class="aligncenter size-medium wp-image-24622" title="Maven Pro" src="http://blogfreakz.com/wp-content/uploads/2012/01/411-285x175.jpg" alt="411 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<p style="text-align: center;"><strong> </strong></p>
<p style="text-align: center;"><a href="http://www.fontsquirrel.com/fonts/Aller" target="_blank"><strong>Aller </strong></a></p>
<p style="text-align: center;"><a href="http://www.logodsgn.com/wp-content/uploads/2009/06/aller.png"><img class="aligncenter size-medium wp-image-24623" title="Aller" src="http://blogfreakz.com/wp-content/uploads/2012/01/510-285x175.jpg" alt="510 285x175 25 Professional High Quality Free Fonts" width="285" height="175" /></a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="professional word fonts">professional word fonts</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="free high quality fonts">free high quality fonts</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="free fonts manager">free fonts manager</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="fonts word">fonts word</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="free font inspiration">free font inspiration</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="ff sero font mb-torrent">ff sero font mb-torrent</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="ff sero">ff sero</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="free quality fonts January 2012">free quality fonts January 2012</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="marven pro font torrent">marven pro font torrent</a></li>
<li><a href="http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/" title="museo sans">museo sans</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/inspiration/25-professional-high-quality-free-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimal Portfolio Site Layout Free PSD</title>
		<link>http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/</link>
		<comments>http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/#comments</comments>
		<pubDate>Sat, 18 Jun 2011 13:27:15 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[slider]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/</guid>
		<description><![CDATA[Today we are excited to release a new freebie resource. A simple, professional and minimal portfolio site layout. We are releasing this free resource in a fully layered PSD file. This stylish resource is offered exclusively on ahmadhania.com Incoming search terms for the article: free css3 minimal site psd layout free# minimal portfolio psd map [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are excited to release a new freebie resource. A simple, professional and minimal portfolio site layout. We are releasing this free resource in a fully layered PSD file. This stylish resource is offered exclusively on ahmadhania.com<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="free css3 minimal site">free css3 minimal site</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="psd layout free#">psd layout free#</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="minimal portfolio psd">minimal portfolio psd</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="map minimal icon psd">map minimal icon psd</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="layout psd site">layout psd site</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="html5 minimal portfolio">html5 minimal portfolio</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="html5 layouts minimal">html5 layouts minimal</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="free psd minimalistic gallery">free psd minimalistic gallery</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="free psd layout">free psd layout</a></li>
<li><a href="http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/" title="psd website portfolio">psd website portfolio</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/minimal-portfolio-site-layout-free-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dark Menu Free PSD</title>
		<link>http://blogfreakz.com/news/dark-menu-free-psd/</link>
		<comments>http://blogfreakz.com/news/dark-menu-free-psd/#comments</comments>
		<pubDate>Sat, 28 May 2011 10:21:56 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[dark]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[designer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[PSD]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/dark-menu-free-psd/</guid>
		<description><![CDATA[Today we are excited to release a new freebie resource. A free simple website dark menu. We are releasing this free resource in a fully layered PSD file. This resource is offered exclusively on ahmadhania.com]]></description>
			<content:encoded><![CDATA[<p>Today we are excited to release a new freebie resource. A free simple website dark menu. We are releasing this free resource in a fully layered PSD file. This resource is offered exclusively on ahmadhania.com</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/dark-menu-free-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>High Quality Icons Mega Roundup: Creative and Specialized Sets</title>
		<link>http://blogfreakz.com/news/high-quality-icons-mega-roundup-creative-and-specialized-sets/</link>
		<comments>http://blogfreakz.com/news/high-quality-icons-mega-roundup-creative-and-specialized-sets/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 02:13:45 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[creative]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[high quality]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[unique]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/high-quality-icons-mega-roundup-creative-and-specialized-sets/</guid>
		<description><![CDATA[The purpose of an icon is to bring flair and life to a menu or navigation by replacing text with a recognizable image. These unique icons are incredibly detailed can often be used as desktop icons, or folder icons.]]></description>
			<content:encoded><![CDATA[<p>The purpose of an icon is to bring flair and life to a menu or navigation by replacing text with a recognizable image. These unique icons are incredibly detailed can often be used as desktop icons, or folder icons.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/high-quality-icons-mega-roundup-creative-and-specialized-sets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

