<?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 - Web Design and Web Development resources &#187; Software &amp; Tools</title>
	<atom:link href="http://blogfreakz.com/tag/tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>A site dedicated to keeping up with the latest trends on Web Design</description>
	<lastBuildDate>Thu, 24 May 2012 05:41:14 +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>Smart Validate: jQuery Credit Card Validation Plugin</title>
		<link>http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/</link>
		<comments>http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 07:54:15 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[free download]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25443</guid>
		<description><![CDATA[If you’re conducting an online business, this jQuery plugin called Smart Validate will be a helpful addition to your website. Created by the egrappler.com web developers, it makes credit card validation easier and more convenient. The following credit cards are supported by Smart Validate: -          Visa Card -          Master Card -          Discover -          American Express [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>If you’re conducting an online business, this jQuery plugin called Smart Validate will be a helpful addition to your website. Created by the <a href="http://www.egrappler.com/" target="_blank"><strong>egrappler.com</strong></a> web developers, it makes credit card validation easier and more convenient.</p>
<p><img class="aligncenter size-full wp-image-25444" title="Smart Validate" src="http://blogfreakz.com/wp-content/uploads/2012/02/Smart-Validate.jpg" alt="Smart Validate Smart Validate: jQuery Credit Card Validation Plugin" width="459" height="272" /></p>
<p>The following credit cards are supported by Smart Validate:</p>
<p>-          Visa Card</p>
<p>-          Master Card</p>
<p>-          Discover</p>
<p>-          American Express</p>
<p>-          Diners Club</p>
<p>It can also be extended to support other credit cards types.</p>
<p>Add these in your head function of your HTML</p>
<p>-          Add reference to the latest jQuery script</p>
<p>-          Add reference to ccvalidate.js file</p>
<p>-          Add reference to ccvalidate.css file</p>
<p>In your HTML document, add the following code below or use classes<strong> </strong>&#8220;cc-ddl-type&#8221;, &#8220;cc-card-number&#8221; and &#8220;cc-checkout&#8221; to existing elements as they are required since this jQuery plugin uses the classes to read the needed values.</p>
<p>&nbsp;</p>
<pre><span style="color: #003366;">&lt;select&gt;</span></pre>
<pre><span style="color: #003366;">&lt;option value="mcd"&gt;Master Card&lt;/option&gt;</span></pre>
<pre><span style="color: #003366;">&lt;option value="vis"&gt;Visa Card&lt;/option&gt;</span></pre>
<pre><span style="color: #003366;">&lt;option value="amx"&gt;American Express&lt;/option&gt;</span></pre>
<pre><span style="color: #003366;">&lt;option value="dnr"&gt;Diner Club&lt;/option&gt;</span></pre>
<pre><span style="color: #003366;">&lt;option value="dis"&gt;Discover&lt;/option&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/select&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input type="text"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;input value="Checkout" type="submit"&gt;</span></pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This plugin has only one parameter, which is the callback function. It returns a Boolean value which indicates if the credit card number is a valid format or not.</p>
<p>&nbsp;</p>
<pre><span style="color: #003366;">$('.cc-container').ccvalidate({ onvalidate: function(isValid) {</span></pre>
<pre><span style="color: #003366;">if (!isValid) {</span></pre>
<pre><span style="color: #003366;">alert('Incorrect Credit Card format');</span></pre>
<pre><span style="color: #003366;">return false;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<p>&nbsp;</p>
<p>Below is the full code:</p>
<p>&nbsp;</p>
<pre><span style="color: #003366;"><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "</code></span><a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><span style="color: #003366;">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</span></a><span style="color: #003366;"><code>"&gt;</code></span></pre>
<pre><span style="color: #003366;"><code>&lt;html</code> <code>xmlns="</code></span><a href="http://www.w3.org/1999/xhtml"><span style="color: #003366;">http://www.w3.org/1999/xhtml</span></a><span style="color: #003366;"><code>"&gt;</code></span></pre>
<pre><span style="color: #003366;"><code>&lt;head&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;title&gt;jQuery Credit Card Validation Plugin Sample&lt;/title&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;script</code> <code>src="jquery-1.4.4.min.js"</code> <code>type="text/javascript"&gt;&lt;/script&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;script</code> <code>src="ccvalidate.js"</code> <code>type="text/javascript"&gt;&lt;/script&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;link</code> <code>href="ccvalidate.css"</code> <code>rel="stylesheet"</code> <code>type="text/css"</code> <code>/&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;script</code> <code>type="text/javascript"&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> $(document).ready(function() {</code></span></pre>
<pre><span style="color: #003366;"><code> $('.cc-container').ccvalidate({ onvalidate: function(isValid) {</code></span></pre>
<pre><span style="color: #003366;"><code> if (!isValid) {</code></span></pre>
<pre><span style="color: #003366;"><code> alert('Incorrect Credit Card format');</code></span></pre>
<pre><span style="color: #003366;"><code> return false;</code></span></pre>
<pre><span style="color: #003366;"><code> }</code></span></pre>
<pre><span style="color: #003366;"><code> }</code></span></pre>
<pre><span style="color: #003366;"><code> });</code></span></pre>
<pre><span style="color: #003366;"><code> });</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;/script&gt;</code></span></pre>
<pre><span style="color: #003366;"><code>&lt;/head&gt;</code></span></pre>
<pre><span style="color: #003366;"><code>&lt;body&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;div</code> <code>class="cc-container"&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;select</code> <code>id="cc-types"</code> <code>class="cc-ddl-type"&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;option</code> <code>value="mcd"&gt;Master Card&lt;/option&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;option</code> <code>value="vis"&gt;Visa Card&lt;/option&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;option</code> <code>value="amx"&gt;American Express&lt;/option&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;option</code> <code>value="dnr"&gt;Diner Club&lt;/option&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;option</code> <code>value="dis"&gt;Discover&lt;/option&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;/select&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;input</code> <code>type="text"</code> <code>id="card-number"</code> <code>class="cc-card-number"</code> <code>/&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;input</code> <code>type="submit"</code> <code>value="Checkout"</code> <code>class="cc-checkout"</code> <code>id="check-out"</code> <code>/&gt;</code></span></pre>
<pre><span style="color: #003366;"><code> &lt;/div&gt;</code></span></pre>
<pre><span style="color: #003366;"><code>&lt;/body&gt;</code></span></pre>
<pre><span style="color: #003366;"><code>&lt;/html&gt;</code></span><strong> </strong></pre>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>Check out the <a href="http://www.egrappler.com/ccvalidate/index.htm" target="_blank"><strong>DEMO</strong></a> and <a href="http://www.egrappler.com/ccvalidate/credit-card-validate.zip" target="_blank"><strong>DOWNLOAD</strong></a>.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</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/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery credit card validation script">jquery credit card validation script</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="card types">card types</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery credit card validation">jquery credit card validation</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery credit card">jquery credit card</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="credit card validator">credit card validator</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery smart validate review">jquery smart validate review</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery validation bootstrap">jquery validation bootstrap</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery validator tutorial for credit cards">jquery validator tutorial for credit cards</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="jquery visacard">jquery visacard</a></li>
<li><a href="http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/" title="master card and validation code">master card and validation code</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/smart-validate-jquery-credit-card-validation-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ProCSSor &#8211; Web Based CSS Prettifier</title>
		<link>http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/</link>
		<comments>http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 22:15:44 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[CSS Layout]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=9781</guid>
		<description><![CDATA[ProCSSor is a web-based service that allow us to formatting and prettifying CSS files on the fly. ProCSSor has unique formatting styles and several customizable options to prettify your CSS  like brace styles, right/left columns and indent properties. ProCSSor can grab a CSS file by simply copy-pasting, uploading or mentioning the URL directly. Website: http://www.procssor.com [...]]]></description>
			<content:encoded><![CDATA[<p><a title="ProCSSor" rel="nofollow" href="http://www.procssor.com" target="_blank">ProCSSor</a> is a web-based service that allow us to formatting and <strong>prettifying CSS files</strong> on the fly. ProCSSor has unique formatting styles and several customizable options to prettify your CSS  like brace styles, right/left columns and indent properties.<br />
ProCSSor can grab a CSS file by simply copy-pasting, uploading or mentioning the URL directly.</p>
<p><span id="more-9781"></span><a rel="nofollow" href="http://www.procssor.com"><img class="aligncenter size-full wp-image-9782" title="proCSSor" src="http://blogfreakz.com/wp-content/uploads/2010/09/proCSSor.jpg" alt="proCSSor ProCSSor   Web Based CSS Prettifier " width="600" height="582" /></a></p>
<p class="download"><strong>Website</strong>: <a title="ProCSSor" rel="nofollow" href="http://www.procssor.com" target="_blank">http://www.procssor.com</a><br />
<strong>License</strong>: Free License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="xml prettifier">xml prettifier</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="procssor">procssor</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="html prettifier">html prettifier</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="procssor com">procssor com</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="html5 prettifier">html5 prettifier</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="css prettifier">css prettifier</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="web base site map">web base site map</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="Web Based XML prettifier">Web Based XML prettifier</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="jquery prettifier">jquery prettifier</a></li>
<li><a href="http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/" title="html prettifier web">html prettifier web</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/css-layout/procssor-web-based-css-prettifier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fluid &#8211; Turn Your Favorite Websites Into Mac Desktop Applications</title>
		<link>http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/</link>
		<comments>http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 06:42:46 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=8830</guid>
		<description><![CDATA[Web applications like Gmail, Facebook, Campfire and Pandora are becoming more and more like desktop applications every day. Running each of these web apps in an individual tab in your browser can be a real pain. Fluid lets you create a Site Specific Browser (SSB) out of any website or web application, effectively turning your [...]]]></description>
			<content:encoded><![CDATA[<p>Web applications like Gmail, Facebook, Campfire and Pandora are becoming  more and more like desktop applications every day. Running each of  these web apps in an individual tab in your browser can be a real pain.</p>
<p><strong>Fluid</strong> lets you create a <strong>Site Specific Browser</strong> (SSB) out of any  website or web application, effectively turning your favorite web apps  into desktop apps. Using Fluid to create an SSB out of your favorite website is simple.</p>
<p><span id="more-8830"></span></p>
<p><a rel="nofollow"> href=&#8221;http://fluidapp.com/&#8221;><img class="aligncenter size-full wp-image-8832" title="dock_large" src="http://blogfreakz.com/wp-content/uploads/2010/08/dock_large.jpg" alt="dock large Fluid   Turn Your Favorite Websites Into Mac Desktop Applications" width="600" height="200" /></a></p>
<p>Enter the website&#8217;s URL, provide a name, and optionally <a rel="nofollow" href="http://www.flickr.com/groups/fluid_icons/">choose an icon</a>.  Click &#8220;Create&#8221;, and within seconds your chosen website has been  converted into a fully native Mac desktop application that appears in  your Dock.</p>
<p class="download">
<strong>Download</strong>: <a  rel="nofollow" title="FluidApp" href="http://fluidapp.com/" target="_blank">http://fluidapp.com</a>
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="turn website into application mac">turn website into application mac</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="mac desktop">mac desktop</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="turn web apps into desktop apps">turn web apps into desktop apps</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="fluid mac">fluid mac</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="desktop favorite application">desktop favorite application</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="dock website">dock website</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="jquery mac desktop">jquery mac desktop</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="css3 dock mac">css3 dock mac</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="mac desktop dock">mac desktop dock</a></li>
<li><a href="http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/" title="turn website into desktop app">turn website into desktop app</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/fluid-turn-your-favorite-websites-into-mac-desktop-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Your Own Website, Forums With Hpage</title>
		<link>http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/</link>
		<comments>http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 20:25:38 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=8794</guid>
		<description><![CDATA[Hpage is a innovative website that allow us to create free website easily. You do not need to have any HTML or other coding knowledge to create free website. It&#8217;s just take 2 minitues to create webiste. they offers many advanced feature to the users like like guestbook, password protect web pages, insert keywords, meta [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.hpage.com" target="_blank">Hpage</a> is a innovative website that allow us to create free website easily. You do not need to have any HTML or other coding knowledge to create free website. It&#8217;s just take 2 minitues to create webiste.</p>
<p><span id="more-8794"></span><a href="http://www.hpage.com"><img class="aligncenter size-full wp-image-8795" title="hpage" src="http://blogfreakz.com/wp-content/uploads/2010/08/hpage.jpg" alt="hpage Create Your Own Website, Forums With Hpage " width="600" height="313" /></a></p>
<p>they offers many advanced feature to the users like like <strong>guestbook</strong>, password protect web pages, insert keywords, meta tags, favicon, additional css file and HTML codes to header section of the website.<br />
Best of all is they also offers 300MB free storage space with each account to store files like video, images, HTML files, flash files and downloads. It has a great number of unique design templates (more than 300).</p>
<p>I have also attached a screenshot of a website that I have created at hpage. It is just to give an idea how easy it is to <a href="http://www.hpage.com" target="_blank">build a free website</a> at hpage.com.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="hpage">hpage</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="advanced html codes for websites">advanced html codes for websites</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="create free website">create free website</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="header section of a web site">header section of a web site</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="how to creat a html code for hpage won home page">how to creat a html code for hpage won home page</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="image for need for create a website">image for need for create a website</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="how to create a website in css and html">how to create a website in css and html</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="how to create free website using html in hpage">how to create free website using html in hpage</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="how to make a like and star rating with css3">how to make a like and star rating with css3</a></li>
<li><a href="http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/" title="software development forums">software development forums</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/create-your-own-website-forums-with-hpage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wix &#8211; Free Flash Website Builder</title>
		<link>http://blogfreakz.com/tools/wix-free-flash-website-builder/</link>
		<comments>http://blogfreakz.com/tools/wix-free-flash-website-builder/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 04:25:36 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[flashmint]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=8339</guid>
		<description><![CDATA[Wix is a free website builder tool that will allow you to build and deploy interactive and SEO friendly Flash websites. With Wix, users can create a website  from scratch, or by customizing one of Wix’  Flash website templates. There are photography, business, musician, artist and ecommerce websites, filled with design elements suited to each [...]]]></description>
			<content:encoded><![CDATA[<p>Wix is a <a title="Free Website Builder" href="http://www.wix.com/" target="_blank">free website builder</a> tool that will allow you to build and deploy<strong> interactive and SEO friendly Flash websites</strong>. With Wix, users can create a website  from scratch, or by customizing one of Wix’  Flash website templates.<br />
<span id="more-8339"></span> <a href="http://www.wix.com/"><img class="aligncenter size-full wp-image-8341" title="wix1" src="http://blogfreakz.com/wp-content/uploads/2010/08/wix1.jpg" alt="wix1 Wix   Free Flash Website Builder" width="600" height="307" /></a> There are photography, business, musician, artist and ecommerce websites, filled with design elements suited to each niche, and can streamline a user’s design process. It has a clean graphic interface and drag &amp; drop feature.</p>
<p>To <a title="Get Started" href="http://www.wix.com/create/website" target="_blank">get started</a>, browse through template galleries  inside the Create section of the homepage. Click on a template you wish to edit  and add your own text, photos, links, music, etc. You can also customize the color, font, size, effects, settings, etc.</p>
<p><a href="http://www.wix.com/create/website"><img class="aligncenter size-full wp-image-8342" title="wix2" src="http://blogfreakz.com/wp-content/uploads/2010/08/wix2.jpg" alt="wix2 Wix   Free Flash Website Builder" width="600" height="278" /></a></p>
<p>Wix lets you add clip art, photo galleries, widgets, music players, Flash animation and more to your website, just by dragging and dropping the items where you want them.</p>
<h3>Some Wix-Powered Websites</h3>
<h3><a href="http://www.wix.com/eucoastervision/WLD" target="_blank">eucoastervision</a></h3>
<h3><a href="http://www.wix.com/eucoastervision/WLD"><img class="aligncenter size-full wp-image-8356" title="eucoastervision" src="http://blogfreakz.com/wp-content/uploads/2010/08/eucoastervision.jpg" alt="eucoastervision Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/jazmineimagines/bio" target="_blank">jazmineimagines</a></h3>
<h3><a href="http://www.wix.com/jazmineimagines/bio"><img class="aligncenter size-full wp-image-8357" title="jazmineimagines" src="http://blogfreakz.com/wp-content/uploads/2010/08/jazmineimagines.jpg" alt="jazmineimagines Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/MVMotta/michelemotta" target="_blank">michelemotta</a></h3>
<h3><a href="http://www.wix.com/MVMotta/michelemotta"><img class="aligncenter size-full wp-image-8358" title="michelemotta" src="http://blogfreakz.com/wp-content/uploads/2010/08/michelemotta.jpg" alt="michelemotta Wix   Free Flash Website Builder" width="600" height="300" /></a></h3>
<h3><a href="http://www.wix.com/kdot_1/KDOT%20Designs" target="_blank">KDOT Designs</a></h3>
<h3><a href="http://www.wix.com/kdot_1/KDOT%20Designs"><img class="aligncenter size-full wp-image-8359" title="KDOT-Designs" src="http://blogfreakz.com/wp-content/uploads/2010/08/KDOT-Designs.jpg" alt="KDOT Designs Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/pmcprod/BIG-JOHNS" target="_blank">BIG-JOHNS</a></h3>
<h3><a href="http://www.wix.com/pmcprod/BIG-JOHNS"><img class="aligncenter size-full wp-image-8360" title="BIG-JOHNS" src="http://blogfreakz.com/wp-content/uploads/2010/08/BIG-JOHNS.jpg" alt="BIG JOHNS Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/toddster/Style-Hub-Image-Consultancy" target="_blank">Style-Hub-Image-Consultancy</a></h3>
<h3><a href="http://www.wix.com/toddster/Style-Hub-Image-Consultancy"><img class="aligncenter size-full wp-image-8362" title="Style-Hub-Image-Consultancy" src="http://blogfreakz.com/wp-content/uploads/2010/08/Style-Hub-Image-Consultancy.jpg" alt="Style Hub Image Consultancy Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/gsirek/YMP-2010-Plus3" target="_blank">YMP-2010-Plus3</a></h3>
<p><a href="http://www.wix.com/gsirek/YMP-2010-Plus3"><img class="aligncenter size-full wp-image-8363" title="YMP-2010-Plus3" src="http://blogfreakz.com/wp-content/uploads/2010/08/YMP-2010-Plus3.jpg" alt="YMP 2010 Plus3 Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/stumples/Yak-Design" target="_blank">Yak-Design</a></p>
<h3><a href="http://www.wix.com/stumples/Yak-Design"><img class="aligncenter size-full wp-image-8365" title="Yak-Design" src="http://blogfreakz.com/wp-content/uploads/2010/08/Yak-Design.jpg" alt="Yak Design Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/pipboy32D/samuelcrowder" target="_blank">samuelcrowder</a></h3>
<p><a href="http://www.wix.com/pipboy32D/samuelcrowder"><img class="aligncenter size-full wp-image-8366" title="samuelcrowder" src="http://blogfreakz.com/wp-content/uploads/2010/08/samuelcrowder.jpg" alt="samuelcrowder Wix   Free Flash Website Builder" width="600" height="300" /></a><a href="http://www.wix.com/ActiveLivingpr/ALC" target="_blank">ALC</a></p>
<p><a href="http://www.wix.com/ActiveLivingpr/ALC"><img class="aligncenter size-full wp-image-8367" title="ALC" src="http://blogfreakz.com/wp-content/uploads/2010/08/ALC.jpg" alt="ALC Wix   Free Flash Website Builder" width="600" height="300" /></a></p>
<p class="download"><strong>Website</strong>: <a title="Free Website Builder" href="http://www.wix.com/" target="_blank">http://www.wix.com/</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="html5 website builder">html5 website builder</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="wix html5">wix html5</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="html5 website creator">html5 website creator</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="free html5 website builder">free html5 website builder</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="wix free website">wix free website</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="html5 web builder">html5 web builder</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="html 5 website builder">html 5 website builder</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="free flash website builder">free flash website builder</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="website builder html5">website builder html5</a></li>
<li><a href="http://blogfreakz.com/tools/wix-free-flash-website-builder/" title="jazmineimagines">jazmineimagines</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/wix-free-flash-website-builder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Muro &#8211; deviantART&#8217;s free HTML5 powered drawing Application</title>
		<link>http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/</link>
		<comments>http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 13:24:18 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=8312</guid>
		<description><![CDATA[Muro is deviantART&#8217;s free HTML5 powered drawing applicattion. Muro allows users to create complete works of art in ways never before realized by digital drawing programs. deviantART Muro already boosts standard and interactive brushes, full-blown layer capabilities, and the ability to upload directly to your deviantART account. Features deviantART&#8217;s free HTML5 powered drawing app 21 [...]]]></description>
			<content:encoded><![CDATA[<p>Muro is deviantART&#8217;s <a title="Muro Free HTML5 Drawing App" rel="nofollow" href="http://news.deviantart.com/article/125373/" target="_blank">free HTML5 powered drawing applicattion</a>. Muro allows users to create complete works of 			art in ways never before realized by 			digital drawing programs. deviantART Muro already 			boosts standard and interactive brushes, 			full-blown layer capabilities, and the 			ability to upload directly to your 			deviantART account.</p>
<h3><span id="more-8312"></span></h3>
<p><a rel="nofollow" href="http://news.deviantart.com/article/125373/"><img class="aligncenter size-full wp-image-8314" title="muro" src="http://blogfreakz.com/wp-content/uploads/2010/08/muro.jpg" alt="muro Muro   deviantARTs free HTML5 powered drawing Application" width="600" height="383" /></a></p>
<h3>Features</h3>
<ul>
<li><strong>deviantART&#8217;s free HTML5 powered drawing app</strong></li>
<li><strong>21 brushes, each uniquely programmed</strong></li>
<li>Basic and Pro modes, both free</li>
<li>Intuitive layout and functionality</li>
<li>Supports all HTML5-enabled browsers including the iPad</li>
<li>Submit drawings directly to your deviantART Gallery</li>
<li>Convenient design allows more focus on your art</li>
<li>Join fellow deviants in a public forum to share drawings</li>
<li>Start private threads in your group&#8217;s Admin Area and enjoy picture comments</li>
</ul>
<p class="download"><strong>Requirements</strong>: HTML5-enabled browsers<br />
<strong>Demo</strong>: <a title="Muro Free HTML5 Drawing App" rel="nofollow" href="http://www.deviantart.com/muro/" target="_blank">http://www.deviantart.com/muro/</a><br />
<strong>License</strong>: License free</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="muro deviantart">muro deviantart</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="deviantart muro">deviantart muro</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="Muro deviantart com">Muro deviantart com</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="deviantart muro source">deviantart muro source</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="deviantarts">deviantarts</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="Layouts html5">Layouts html5</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="murodeviantart">murodeviantart</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="DEVIANTART FREE">DEVIANTART FREE</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="html5 drawing application">html5 drawing application</a></li>
<li><a href="http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/" title="deviantART\s free HTML5 powered drawing app">deviantART\s free HTML5 powered drawing app</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/muro-deviantarts-free-html5-drawing-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best Community Snippets On The Web Design Billboard in May’10</title>
		<link>http://blogfreakz.com/news/the-best-community-snippets-on-the-web-design-billboard-in-may%e2%80%9910/</link>
		<comments>http://blogfreakz.com/news/the-best-community-snippets-on-the-web-design-billboard-in-may%e2%80%9910/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 06:55:00 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[ajaxappz]]></category>
		<category><![CDATA[art inspiration]]></category>
		<category><![CDATA[best-of]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[design showcase]]></category>
		<category><![CDATA[digital showcase]]></category>
		<category><![CDATA[feature collection]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[hacks resources]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[psds]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[textures]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[vectors]]></category>
		<category><![CDATA[wallpapers]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/the-best-community-snippets-on-the-web-design-billboard-in-may%e2%80%9910/</guid>
		<description><![CDATA[In this round-up, you’ll find number of top resources, tutorials, freebies which left deep impression on web design community, as the month of May had a lot of interesting articles produces by different sources. Incoming search terms for the article: cache:GXaog5qhTdYJ:blogfreakz com/video/flarevideo-html5-video-with-flash-fallback/ html5 video &#038; lightbox]]></description>
			<content:encoded><![CDATA[<p>In this round-up, you’ll find number of top resources, tutorials, freebies which left deep impression on web design community, as the month of May had a lot of interesting articles produces by different sources.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/news/the-best-community-snippets-on-the-web-design-billboard-in-may%e2%80%9910/" title="cache:GXaog5qhTdYJ:blogfreakz com/video/flarevideo-html5-video-with-flash-fallback/ html5 video &#038; lightbox">cache:GXaog5qhTdYJ:blogfreakz com/video/flarevideo-html5-video-with-flash-fallback/ html5 video &#038; lightbox</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/the-best-community-snippets-on-the-web-design-billboard-in-may%e2%80%9910/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Leading Presentation Tools Every Designer Should Know</title>
		<link>http://blogfreakz.com/news/10-leading-presentation-tools-every-designer-should-know/</link>
		<comments>http://blogfreakz.com/news/10-leading-presentation-tools-every-designer-should-know/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 19:37:00 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/10-leading-presentation-tools-every-designer-should-know/</guid>
		<description><![CDATA[Here are 10 top of the line programs that will help you take your PowerPoint presentation global. If you haven’t used any of these to create some great video, give them a shot!]]></description>
			<content:encoded><![CDATA[<p>Here are 10 top of the line programs that will help you take your PowerPoint presentation global. If you haven’t used any of these to create some great video, give them a shot!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/10-leading-presentation-tools-every-designer-should-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ultimate List of HTML5 and CSS3 Tools</title>
		<link>http://blogfreakz.com/news/ultimate-list-of-html5-and-css3-tools/</link>
		<comments>http://blogfreakz.com/news/ultimate-list-of-html5-and-css3-tools/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 16:13:05 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/ultimate-list-of-html5-and-css3-tools/</guid>
		<description><![CDATA[HTML5 and CSS3 are really revolutionizing the worlds of web development and web design, because they are bringing so many new features to work with to the fields.]]></description>
			<content:encoded><![CDATA[<p>HTML5 and CSS3 are really revolutionizing the worlds of web development and web design, because they are bringing so many new features to work with to the fields.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/ultimate-list-of-html5-and-css3-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>27 Useful Screen Capture Tools</title>
		<link>http://blogfreakz.com/news/27-useful-screen-capture-tools/</link>
		<comments>http://blogfreakz.com/news/27-useful-screen-capture-tools/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 00:19:56 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/news/27-useful-screen-capture-tools/</guid>
		<description><![CDATA[Screen capture tools might help you to make screen grabbing job easier. Here we share 27 useful screen capture tools.]]></description>
			<content:encoded><![CDATA[<p>Screen capture tools might help you to make screen grabbing job easier. Here we share 27 useful screen capture tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/news/27-useful-screen-capture-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

