<?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; Buttons</title>
	<atom:link href="http://blogfreakz.com/category/button/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, 17 May 2012 00:27:50 +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 Eye-Catching CSS Buttons With Pseudo-Elements</title>
		<link>http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/</link>
		<comments>http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/#comments</comments>
		<pubDate>Thu, 10 May 2012 03:33:37 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[free tutorial]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=27299</guid>
		<description><![CDATA[Today&#8217;s featured CSS tutorial comes from Sergio Camalich who created a very cool set of button designs with the use of CSS pseudo-elements. His tutorial shows you how to create buttons with a twist. It will only involve using just one anchor tag for each button to work (with the help of CSS), because you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p><strong></strong>Today&#8217;s featured CSS tutorial comes from <a href="http://www.esecamalich.com/"><strong>Sergio Camalich</strong></a> who created a very cool set of button designs with the use of CSS pseudo-elements. His tutorial shows you how to create buttons with a twist. It will only involve using just one anchor tag for each button to work (with the help of CSS), because you&#8217;ll be creating the other elements with the <strong>::before</strong> pseudo-class.</p>
<p>Sergio created five different button styles using this one approach but I&#8217;m only going to show you just one of them, which actually happens to be my favorite one. If you like to see the rest of the styles, you can check them out on his <a href="http://dribbble.com/esecamalich" target="_blank"><strong>dribble page</strong></a><strong>.</strong><a href="http://dribbble.com/esecamalich"><strong></strong></a></p>
<p>The button that we&#8217;re going to create will look like this:</p>
<p style="text-align: center;"><a href="http://dribbble.com/shots/358312--another-CSS3-Button"><img class="aligncenter size-full wp-image-27300" title="css buttons" src="http://blogfreakz.com/wp-content/uploads/2012/05/css-buttons.jpg" alt="css buttons Create Eye Catching CSS Buttons With Pseudo Elements" width="624" height="235" /></a><strong>Click on the image for the demo.</strong></p>
<p>We’ll keep our HTML markup as short and simple as possible with this:</p>
<pre><span style="color: #003366;">&lt;a href="#"&gt;</span></pre>
<pre><span style="color: #003366;">Click me!</span>
<span style="color: #003366;"> &lt;/a&gt;</span></pre>
<p>And now for the magic of CSS:</p>
<pre><span style="color: #003366;">.a_demo_three {</span></pre>
<pre><span style="color: #003366;">background-color:#3bb3e0;</span></pre>
<pre><span style="color: #003366;">font-family: 'Open Sans', sans-serif;</span></pre>
<pre><span style="color: #003366;">font-size:12px;</span></pre>
<pre><span style="color: #003366;">text-decoration:none;</span></pre>
<pre><span style="color: #003366;">color:#fff;</span></pre>
<pre><span style="color: #003366;">position:relative;</span></pre>
<pre><span style="color: #003366;">padding:10px 20px;</span></pre>
<pre><span style="color: #003366;">border-left:solid 1px #2ab7ec;</span></pre>
<pre><span style="color: #003366;">margin-left:35px;</span>
<span style="color: #003366;">background-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%);</span></pre>
<pre><span style="color: #003366;">border-top-right-radius: 5px;</span></pre>
<pre><span style="color: #003366;">border-bottom-right-radius: 5px;</span></pre>
<pre><span style="color: #003366;">box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785, 0px 10px 5px #999;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.a_demo_three:active {</span></pre>
<pre><span style="color: #003366;">top:3px;</span></pre>
<pre><span style="color: #003366;">background-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%);</span></pre>
<pre><span style="color: #003366;">box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785, 0px 5px 3px #999;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.a_demo_three::before {</span></pre>
<pre><span style="color: #003366;">content:"·";</span></pre>
<pre><span style="color: #003366;">width:35px;</span></pre>
<pre><span style="color: #003366;">max-height:29px;</span></pre>
<pre><span style="color: #003366;">height:100%;</span></pre>
<pre><span style="color: #003366;">position:absolute;</span></pre>
<pre><span style="color: #003366;">display:block;</span></pre>
<pre><span style="color: #003366;">padding-top:8px;</span></pre>
<pre><span style="color: #003366;">top:0px;</span></pre>
<pre><span style="color: #003366;">left:-36px;</span></pre>
<pre><span style="color: #003366;">font-size:16px;</span></pre>
<pre><span style="color: #003366;">font-weight:bold;</span></pre>
<pre><span style="color: #003366;">color:#8fd1ea;</span></pre>
<pre><span style="color: #003366;">text-shadow:1px 1px 0px #07526e;</span></pre>
<pre><span style="color: #003366;">border-right:solid 1px #07526e;</span></pre>
<pre><span style="color: #003366;">background-image: linear-gradient(bottom, rgb(10,94,125) 0%, rgb(14,139,184) 100%);</span></pre>
<pre><span style="color: #003366;">border-top-left-radius: 5px;</span></pre>
<pre><span style="color: #003366;">border-bottom-left-radius: 5px;</span></pre>
<pre><span style="color: #003366;">box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 0px 10px 5px #999 ;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.a_demo_three:active::before {</span></pre>
<pre><span style="color: #003366;">top:-3px;</span></pre>
<pre><span style="color: #003366;">box-shadow:inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #032b3a, 1px 1px 0px 0px #044a64, 2px 2px 0px 0px #044a64, 2px 5px 0px 0px #044a64, 6px 4px 2px #0b698b, 0px 10px 5px #999 ;</span>
<span style="color: #003366;"> }</span></pre>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="css button">css button</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="button css demo">button css demo</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="catching button in css">catching button in css</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="CSS Buttons Pseudo-elements">CSS Buttons Pseudo-elements</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="css3 button">css3 button</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="django tutorial">django tutorial</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="eye catching css">eye catching css</a></li>
<li><a href="http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/" title="eye catchy css3 buttons">eye catchy css3 buttons</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tutorial/create-eye-catching-css-buttons-with-pseudo-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Fantastic HTML5 and CSS3 Snippets for Your Website</title>
		<link>http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/</link>
		<comments>http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 08:14:10 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[CSS3 free]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25469</guid>
		<description><![CDATA[Here’s a shortlist of five simple yet cool HTML5 effects that can add life to your website! No images and JavaScript are necessary, as all of them are accomplished using only a combination of HTML5 and CSS3. 1. CSS3 Loading Animation A very basic loading animation. CSS code: &#60;style type='text/css'&#62; @-webkit-keyframes rotate { from { [...]]]></description>
			<content:encoded><![CDATA[<p>Here’s a shortlist of five simple yet cool HTML5 effects that can add life to your website! No images and JavaScript are necessary, as all of them are accomplished using only a combination of HTML5 and CSS3.<strong> </strong></p>
<p><strong>1. </strong><strong>CSS3 Loading Animation</strong></p>
<p>A very basic loading animation.</p>
<p><img class="size-full wp-image-25470 alignnone" title="Loading Animation" src="http://blogfreakz.com/wp-content/uploads/2012/02/Loading-Animation.jpg" alt="Loading Animation 5 Fantastic HTML5 and CSS3 Snippets for Your Website" width="226" height="173" /></p>
<p>CSS code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;style type='text/css'&gt;</span></pre>
<pre><span style="color: #003366;">@-webkit-keyframes rotate {</span></pre>
<pre><span style="color: #003366;">from {</span></pre>
<pre><span style="color: #003366;">-webkit-transform:   rotate(0deg);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">to {</span></pre>
<pre><span style="color: #003366;">-webkit-transform:   rotate(360deg);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">#loading {</span></pre>
<pre><span style="color: #003366;">border: 1px solid #000;</span></pre>
<pre><span style="color: #003366;">border-right: 0;</span></pre>
<pre><span style="color: #003366;">border-bottom: 0;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius:   100px;</span></pre>
<pre><span style="color: #003366;">height: 100px;</span></pre>
<pre><span style="color: #003366;">width: 100px;</span></pre>
<pre><span style="color: #003366;">margin: 100px;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all   0.5s ease-in;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-name:               rotate;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-duration:           1.0s;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-iteration-count:    infinite;</span></pre>
<pre><span style="color: #003366;">-webkit-animation-timing-function: linear;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">&lt;/style&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>HTML code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;body&gt;</span></pre>
<pre><span style="color: #003366;">&lt;div id="loading"&gt;&lt;/div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/body&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p><strong> </strong></p>
<p><strong>2. </strong><strong>Twitter-inspired Glowing Input Box</strong></p>
<p>The input box glows when you click on it. However, it only works on the latest browser versions (Firefox 4+, IE9, etc.).</p>
<p><img class="alignleft size-full wp-image-25471" title="Glowing Input Box" src="http://blogfreakz.com/wp-content/uploads/2012/02/Glowing-Input-Box.jpg" alt="Glowing Input Box 5 Fantastic HTML5 and CSS3 Snippets for Your Website" width="288" height="54" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>CSS code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;style&gt;</span></pre>
<pre><span style="color: #003366;">input{</span></pre>
<pre><span style="color: #003366;">font-size:18px;</span></pre>
<pre><span style="color: #003366;">font-family: helvetica;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">input {</span></pre>
<pre><span style="color: #003366;">outline:none;</span></pre>
<pre><span style="color: #003366;">transition: all 0.25s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all   0.25s ease-in-out;</span></pre>
<pre><span style="color: #003366;">-moz-transition: all 0.25s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">border-radius:3px;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius:3px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius:3px;</span></pre>
<pre><span style="color: #003366;">border:1px solid   rgba(0,0,0, 0.2);</span></pre>
<pre><span style="color: #003366;">color:gray;</span></pre>
<pre><span style="color: #003366;">background-color:#eee;</span></pre>
<pre><span style="color: #003366;">padding: 3px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">input:focus {</span></pre>
<pre><span style="color: #003366;">box-shadow: 0 0 15px green;</span></pre>
<pre><span style="color: #003366;">-webkit-box-shadow: 0 0   15px green;</span></pre>
<pre><span style="color: #003366;">-moz-box-shadow: 0 0 15px   green;</span></pre>
<pre><span style="color: #003366;">border:1px solid green;</span></pre>
<pre><span style="color: #003366;">background-color:white;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">body{</span></pre>
<pre><span style="color: #003366;">background-color: #FFF;</span></pre>
<pre><span style="color: #003366;">color:gray;</span></pre>
<pre><span style="color: #003366;">font-family:Arial;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">&lt;/style&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>HTML code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">Username &lt;input   type="text" name="username"   placeholder="username"&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div<strong>&gt;</strong></span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>3. </strong><strong>Blur/Unblur Text Effect On Hover</strong></p>
<p>This uses CSS3 transitions and text shadow with transparent color that creates a blurred text effect.</p>
<p><strong><img class="alignleft size-full wp-image-25472" title="Blur and Unblur" src="http://blogfreakz.com/wp-content/uploads/2012/02/Blur-and-Unblur.jpg" alt="Blur and Unblur 5 Fantastic HTML5 and CSS3 Snippets for Your Website" width="283" height="133" /><br />
</strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>CSS code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;style&gt;</span></pre>
<pre><span style="color: #003366;">.hover_blur{</span></pre>
<pre><span style="color: #003366;">font-size:35px;</span></pre>
<pre><span style="color: #003366;">font-family: helvetica;</span></pre>
<pre><span style="color: #003366;">transition: all 0.25s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-moz-transition: all 0.25s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all   0.25s ease-in-out;</span></pre>
<pre><span style="color: #003366;">color:black;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.hover_blur:hover{</span></pre>
<pre><span style="color: #003366;">color:transparent;</span></pre>
<pre><span style="color: #003366;">text-shadow: black 0 0   100px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.hover_unblur{</span></pre>
<pre><span style="color: #003366;">font-size:35px;</span></pre>
<pre><span style="color: #003366;">font-family: helvetica;</span></pre>
<pre><span style="color: #003366;">transition: all 0.25s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-moz-transition: all 0.25s   ease-in-out;</span></pre>
<pre><span style="color: #003366;">-webkit-transition: all   0.25s ease-in-out;</span></pre>
<pre><span style="color: #003366;">text-shadow: black 0 0   30px;</span></pre>
<pre><span style="color: #003366;">color:transparent;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">.hover_unblur:hover{</span></pre>
<pre><span style="color: #003366;">color:black;</span></pre>
<pre><span style="color: #003366;">text-shadow: black 0 0 0px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">body{</span></pre>
<pre><span style="color: #003366;">background-color: #FFF;</span></pre>
<pre><span style="color: #003366;">color:gray;</span></pre>
<pre><span style="color: #003366;">font-family:Arial;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">&lt;/style&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>HTML code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;h1&gt;Hover To Blur&lt;/h1&gt;</span></pre>
<pre><span style="color: #003366;">&lt;h1&gt;Hover To Unblur&lt;/h1<strong>&gt;</strong></span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>4. </strong><strong>Fluid Horizontal Navigation (CSS3 Flexbox)</strong></p>
<p><strong> </strong>This is a simple yet fluid horizontal navigation menu that uses the CSS3 Flexible Box model.</p>
<p><img class="alignleft size-full wp-image-25473" title="Flexbox" src="http://blogfreakz.com/wp-content/uploads/2012/02/Flexbox.jpg" alt="Flexbox 5 Fantastic HTML5 and CSS3 Snippets for Your Website" width="373" height="224" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>CSS code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;style type="text/css"&gt;</span></pre>
<pre><span style="color: #003366;">.container{</span></pre>
<pre><span style="color: #003366;">display:block;</span></pre>
<pre><span style="color: #003366;">float:left;</span></pre>
<pre><span style="color: #003366;">min-width:500px;</span></pre>
<pre><span style="color: #003366;">resize:both;</span></pre>
<pre><span style="color: #003366;">overflow:auto;</span></pre>
<pre><span style="color: #003366;">height:300px;</span></pre>
<pre><span style="color: #003366;">border:1px solid black;</span></pre>
<pre><span style="color: #003366;">background:rgba(0,0,0,.1);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">nav{</span></pre>
<pre><span style="color: #003366;">display: -webkit-box;</span></pre>
<pre><span style="color: #003366;">display: -moz-box;</span></pre>
<pre><span style="color: #003366;">display: box;</span></pre>
<pre><span style="color: #003366;">-webkit-box-orient:horizontal;</span></pre>
<pre><span style="color: #003366;">-moz-box-orient:horizontal;</span></pre>
<pre><span style="color: #003366;">box-orient:horizontal;</span></pre>
<pre><span style="color: #003366;">border:2px solid #333;</span></pre>
<pre><span style="color: #003366;">-webkit-border-radius:6px;</span></pre>
<pre><span style="color: #003366;">-moz-border-radius:6px;</span></pre>
<pre><span style="color: #003366;">-o-border-radius:6px;</span></pre>
<pre><span style="color: #003366;">border-radius:6px;</span></pre>
<pre><span style="color: #003366;">width: 95%;</span></pre>
<pre><span style="color: #003366;">margin:20px auto;</span></pre>
<pre><span style="color: #003366;">background:white;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">nav a{</span></pre>
<pre><span style="color: #003366;">display:block;</span></pre>
<pre><span style="color: #003366;">color:#333;</span></pre>
<pre><span style="color: #003366;">padding:10px;</span></pre>
<pre><span style="color: #003366;">-webkit-box-flex:1;</span></pre>
<pre><span style="color: #003366;">-moz-box-flex:1;</span></pre>
<pre><span style="color: #003366;">box-flex:1;</span></pre>
<pre><span style="color: #003366;">text-align:center;</span></pre>
<pre><span style="color: #003366;">text-decoration:none;</span></pre>
<pre><span style="color: #003366;">-webkit-transition:all .4s   linear;</span></pre>
<pre><span style="color: #003366;">-moz-transition:all .4s linear;</span></pre>
<pre><span style="color: #003366;">-o-transition:all .4s linear;</span></pre>
<pre><span style="color: #003366;">transition:all .4s linear;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">a:hover {</span></pre>
<pre><span style="color: #003366;">background-color:   rgba(0,0,0,.2);</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">a:active {</span></pre>
<pre><span style="color: #003366;">background-color: #333;</span></pre>
<pre><span style="color: #003366;">-webkit-box-shadow: inset 0   2px 8px hsla( 0, 0%, 0%, 0.6 );</span></pre>
<pre><span style="color: #003366;">-moz-box-shadow: inset 0   2px 8px hsla( 0, 0%, 0%, 0.6 );</span></pre>
<pre><span style="color: #003366;">-o-box-shadow: inset 0   2px 8px hsla( 0, 0%, 0%, 0.6 );</span></pre>
<pre><span style="color: #003366;">box-shadow: inset 0   2px 8px hsla( 0, 0%, 0%, 0.6 );</span></pre>
<pre><span style="color: #003366;">color:white;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">p{</span></pre>
<pre><span style="color: #003366;">margin:20px;</span></pre>
<pre><span style="color: #003366;">}</span></pre>
<pre><span style="color: #003366;">&lt;/style&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>HTML code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;nav&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a   href="#"&gt;Home&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a   href="#"&gt;About&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a   href="#"&gt;Contact&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a   href="#"&gt;Rock &amp;amp; Roll&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a   href="#"&gt;Waffles&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/nav&gt;</span></pre>
<pre><span style="color: #003366;">&lt;p&gt;Resize the Window&lt;/p&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>5. </strong><strong>Animated Button</strong></p>
<p>Originally created by Dan Cederholm, this button&#8217;s extra-smooth animation is way better than your typical image swap effect!</p>
<p><img class="alignleft size-full wp-image-25474" title="Animated Button" src="http://blogfreakz.com/wp-content/uploads/2012/02/Animated-Button.jpg" alt="Animated Button 5 Fantastic HTML5 and CSS3 Snippets for Your Website" width="268" height="106" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>CSS code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre>&lt;style type="text/css"&gt;</pre>
<pre>body {</pre>
<pre>padding: 2em 5em;</pre>
<pre>font-family:   "Helvetica Neue", Helvetica, Arial, sans-serif;</pre>
<pre>font-size: 250%;</pre>
<pre>background: #eee;</pre>
<pre>}</pre>
<pre>a:link, a:visited {</pre>
<pre>text-decoration: none;</pre>
<pre>color: #fff;</pre>
<pre>border: none;</pre>
<pre>}</pre>
<pre>a img {</pre>
<pre>border: none;</pre>
<pre>}</pre>
<pre>div.mod {</pre>
<pre>margin: 0 0 30px 0;</pre>
<pre>padding: 80px;</pre>
<pre>text-align: center;</pre>
<pre>background: #fff;</pre>
<pre>-webkit-border-radius:   10px;</pre>
<pre>-moz-border-radius: 10px;</pre>
<pre>border-radius: 10px;</pre>
<pre>-webkit-box-shadow: 0 0 3px   rgba(0, 0, 0, .1);</pre>
<pre>-moz-box-shadow: 0 0 3px   rgba(0, 0, 0, .1);</pre>
<pre>box-shadow: 0 0 3px rgba(0,   0, 0, .1);</pre>
<pre>}</pre>
<pre>p.notes {</pre>
<pre>margin: 0 0 10px 0;</pre>
<pre>font-size: 13px;</pre>
<pre>line-height: 1.4;</pre>
<pre>color: #999;</pre>
<pre>text-align: center;</pre>
<pre>}</pre>
<pre>p.notes a {</pre>
<pre>font-weight: bold;</pre>
<pre>color: #777;</pre>
<pre>border-bottom: 1px solid   #ccc;</pre>
<pre>-webkit-transition: color .2s   ease;</pre>
<pre>-moz-transition: color .2s   ease;</pre>
<pre>-o-transition: color .2s ease;</pre>
<pre>transition: color .2s ease;</pre>
<pre>}</pre>
<pre>p.notes a:hover {</pre>
<pre>color: #555;</pre>
<pre>}</pre>
<pre>p.notes span {</pre>
<pre>margin: 0 4px;</pre>
<pre>color: #ccc;</pre>
<pre>}</pre>
<pre>#stamp {</pre>
<pre>display: block;</pre>
<pre>margin: 20px 0;</pre>
<pre>border: none;</pre>
<pre>-webkit-transition: opacity   .2s ease;</pre>
<pre>-moz-transition: opacity .2s   ease;</pre>
<pre>-o-transition: opacity .2s   ease;</pre>
<pre>transition: opacity .2s ease;</pre>
<pre>}</pre>
<pre>#stamp:hover {</pre>
<pre>opacity: .7;</pre>
<pre>}</pre>
<pre>/* button styles */</pre>
<pre>.btn {</pre>
<pre>display: inline-block;</pre>
<pre>-webkit-border-radius: 8px;</pre>
<pre>-moz-border-radius: 8px;</pre>
<pre>border-radius: 8px;</pre>
<pre>-webkit-box-shadow:</pre>
<pre>0 8px 0 #1a74a1,  0 15px 20px rgba(0, 0, 0, .35);</pre>
<pre>-moz-box-shadow:</pre>
<pre>0 8px 0 #1a74a1,  0 15px 20px rgba(0, 0, 0, .35);</pre>
<pre>box-shadow:</pre>
<pre>0 8px 0 #1a74a1,  0 15px 20px rgba(0, 0, 0, .35);</pre>
<pre>-webkit-transition:   -webkit-box-shadow .2s ease-in-out;</pre>
<pre>-moz-transition:   -moz-box-shadow .2s ease-in-out;</pre>
<pre>-o-transition: -o-box-shadow   .2s ease-in-out;</pre>
<pre>transition: box-shadow .2s   ease-in-out;</pre>
<pre>}</pre>
<pre>.btn span {</pre>
<pre>display: inline-block;</pre>
<pre>padding: 10px 20px;</pre>
<pre>font-family:   "cooper-black-std-1", "cooper-black-std-2", Helvetica,   Arial, sans-serif;</pre>
<pre>line-height: 1;</pre>
<pre>text-shadow: 0 -1px 1px   rgba(19, 65, 88, .8);</pre>
<pre>background: #3194c6;</pre>
<pre>background:   -webkit-gradient(linear, 0% 0%, 0% 100%, from(#3194c6), to(#5bacd6));</pre>
<pre>background:   -moz-linear-gradient(#3194c6, #5bacd6);</pre>
<pre>-webkit-border-radius: 8px;</pre>
<pre>-moz-border-radius: 8px;</pre>
<pre>border-radius: 8px;</pre>
<pre>-webkit-box-shadow: inset 0   -1px 1px rgba(255, 255, 255, .15);</pre>
<pre>-moz-box-shadow: inset 0   -1px 1px rgba(255, 255, 255, .15);</pre>
<pre>box-shadow: inset 0 -1px   1px rgba(255, 255, 255, .15);</pre>
<pre>-webkit-transition:   -webkit-transform .2s ease-in-out;</pre>
<pre>-moz-transition:   -moz-transform .2s ease-in-out;</pre>
<pre>-o-transition: -o-transform   .2s ease-in-out;</pre>
<pre>transition: transform .2s   ease-in-out;</pre>
<pre>}</pre>
<pre>.btn:active {</pre>
<pre>-webkit-box-shadow:</pre>
<pre>0 8px 0 #1a74a1,  0 12px 10px rgba(0, 0, 0, .3);</pre>
<pre>-moz-box-shadow:</pre>
<pre>0 8px 0 #1a74a1,  0 12px 10px rgba(0, 0, 0, .3);</pre>
<pre>box-shadow:</pre>
<pre>0 8px 0 #1a74a1,  0 12px 10px rgba(0, 0, 0, .3);</pre>
<pre>-webkit-transition: -webkit-transform 0s   ease-in-out;</pre>
<pre>-moz-transition:   -moz-transform 0s ease-in-out;</pre>
<pre>-o-transition: -o-transform   0s ease-in-out;</pre>
<pre>transition: transform 0s   ease-in-out;</pre>
<pre>}</pre>
<pre>.btn:active span {</pre>
<pre>-webkit-transform:   translate(0, 4px);</pre>
<pre>-moz-transform:   translate(0, 4px);</pre>
<pre>-o-transform: translate(0,   4px);</pre>
<pre>transform: translate(0,   4px);</pre>
<pre>-webkit-transition:   -webkit-transform 0s ease-in-out;</pre>
<pre>-moz-transition:   -moz-transform 0s ease-in-out;</pre>
<pre>-o-transition: -o-transform   0s ease-in-out;</pre>
<pre>transition: transform 0s   ease-in-out;</pre>
<pre>}</pre>
<pre>&lt;/style&gt;</pre>
</td>
</tr>
</tbody>
</table>
<p>HTML code:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top">
<pre><span style="color: #003366;">&lt;div&gt;</span></pre>
<pre><span style="color: #003366;">&lt;a href="#"  &gt;&lt;span&gt;Press this!&lt;/span&gt;&lt;/a&gt;</span></pre>
<pre><span style="color: #003366;">&lt;/div&gt;</span></pre>
</td>
</tr>
</tbody>
</table>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="html5 css3 snippets">html5 css3 snippets</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="blurred text">blurred text</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="html5 snippets">html5 snippets</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="css3 snippets">css3 snippets</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="css design animated table examples">css design animated table examples</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="menu html5 horizontal con imagenes">menu html5 horizontal con imagenes</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="html5 effects">html5 effects</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="cool html5 effects">cool html5 effects</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="nav menu html5">nav menu html5</a></li>
<li><a href="http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/" title="cool loading animations">cool loading animations</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/5-fantastic-html5-and-css3-snippets-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8 Valentine-Inspired Social Media Icon Designs</title>
		<link>http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/</link>
		<comments>http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 15:10:21 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design News]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Icons]]></category>
		<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[hearts]]></category>
		<category><![CDATA[social media]]></category>
		<category><![CDATA[Valentine's day]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=25083</guid>
		<description><![CDATA[It&#8217;s almost Valentine’s Day so I&#8217;m sharing a way for you and your site visitors to show some love with these 8 nicely designed Valentine-inspired social media icons. Then again, who says you can only apply these designs during Valentine&#8217;s Day? Some of these are good enough to be a permanent part of your site, [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s almost Valentine’s Day so I&#8217;m sharing a way for you and your site visitors to show some love with these 8 nicely designed Valentine-inspired social media icons.</p>
<p>Then again, who says you can only apply these designs during Valentine&#8217;s Day? Some of these are good enough to be a permanent part of your site, depending on the theme of course. Here they are in no particular order:</p>
<p style="text-align: center;"><a href="http://themes.thedesignsuperhero.com/zexee/2009/03/heart-v2-free-social-iconset-in-heart-shape/"><strong>Heart V2 (39 icons)</strong></a></p>
<p style="text-align: center;"><strong><img class="aligncenter size-large wp-image-25084" title="Heart V2" src="http://blogfreakz.com/wp-content/uploads/2012/02/Heart-V2-289x250.jpg" alt="Heart V2 289x250 8 Valentine Inspired Social Media Icon Designs" width="289" height="250" /></strong><a href="http://media.smashingmagazine.com/images/hearting-social-icon-set/hearting-social-icon-set.zip">Download</a> | <a href="http://media.smashingmagazine.com/images/hearting-social-icon-set/preview.png">Preview</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://www.dailyoverview.com/2010/12/heart-social-icons/"><strong>Heart Social Icons (12 icons)</strong></a><strong><span style="text-decoration: underline;"> </span></strong></p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25085" title="Heart Social icons" src="http://blogfreakz.com/wp-content/uploads/2012/02/Heart-Social-icons-377x250.jpg" alt="Heart Social icons 377x250 8 Valentine Inspired Social Media Icon Designs" width="377" height="250" /><a href="http://www.dailyoverview.com/wp-content/uploads/hearts.zip">Download</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://koidesign.blogspot.com/2009/08/8-free-kiss-social-bookmark-icons.html"><strong>Kiss Social Bookmark Icons (8 icons)</strong></a><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25086" title="Kiss Social Icons" src="http://blogfreakz.com/wp-content/uploads/2012/02/Kiss-Social-Icons-383x250.jpg" alt="Kiss Social Icons 383x250 8 Valentine Inspired Social Media Icon Designs" width="383" height="250" /><a href="http://www.deviantart.com/download/134603356/8__Kiss_Social__icons_by_koidesign.rar">Download</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://www.iconarchive.com/show/chococons-icons-by-zeusbox.html"><strong>Chococons (12 icons)</strong></a><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25087" title="Chococons" src="http://blogfreakz.com/wp-content/uploads/2012/02/Chococons-427x250.jpg" alt="Chococons 427x250 8 Valentine Inspired Social Media Icon Designs" width="427" height="250" /><a href="http://www.iconarchive.com/download/s1001/zeusbox/chococons/chococons-Windows.zip">Download (ICO) for Windows</a> | <a href="http://www.iconarchive.com/download/s1001/zeusbox/chococons/chococons_Mac.dmg">Download (DMG) for Mac</a> | <a href="http://www.iconarchive.com/download/s1001/zeusbox/chococons/chococons_PNG.tar.gz">Download (PNG)</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://freepsd.in/portfolio/12-st-valentine%E2%80%99s-day-icons.html"><strong>St. Valentine’s Day Social Media Icons (12 icons)</strong></a><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25088" title="St Valentines Day social media icons" src="http://blogfreakz.com/wp-content/uploads/2012/02/St-Valentines-Day-social-media-icons-597x250.jpg" alt="St Valentines Day social media icons 597x250 8 Valentine Inspired Social Media Icon Designs" width="597" height="250" /><a href="http://freepsd.in/portfolio/12-st-valentine%E2%80%99s-day-icons.html">Download</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://yettezkiedoodle.deviantart.com/art/quot-Typical-Kikay-quot-Social-Icons-180757715"><strong>Typical “Kikay” Social Icons (14 icons)</strong></a><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25091" title="Typical Kikay social icons" src="http://blogfreakz.com/wp-content/uploads/2012/02/Typical-Kikay-social-icons-479x250.jpg" alt="Typical Kikay social icons 479x250 8 Valentine Inspired Social Media Icon Designs" width="479" height="250" /><a href="http://www.deviantart.com/download/180757715/__typical_kikay___social_icons_by_yettezkiedoodle-d2zm9jn.zip">Download</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://www.mommiedaze.com/free-social-media-icons-valentines-candy-conversation-hearts"><strong>Conversation Hearts (6 icons)</strong></a><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-25092" title="Conversation Hearts" src="http://blogfreakz.com/wp-content/uploads/2012/02/Conversation-Hearts.jpg" alt="Conversation Hearts 8 Valentine Inspired Social Media Icon Designs" width="492" height="145" /><a href="http://www.mommiedaze.com/downloads/ConversationHeartsIcons.zip">Download</a></p>
<p style="text-align: center;">&nbsp;</p>
<p style="text-align: center;"><a href="http://icontexto.blogspot.com/2009/02/webdev-valentines-day.html"><strong>IconText to WebDev Valentine’s Day Icon Pack (5 icons)</strong></a><strong> </strong></p>
<p style="text-align: center;"><img class="aligncenter size-large wp-image-25093" title="IconText to WebDev" src="http://blogfreakz.com/wp-content/uploads/2012/02/IconText-to-WebDev-290x250.jpg" alt="IconText to WebDev 290x250 8 Valentine Inspired Social Media Icon Designs" width="290" height="250" /><a href="http://icontexto.com/download.asp?file=icontexto-valentine-pack-01.zip">Download</a></p>
<p style="text-align: center;">&nbsp;</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="valentines day social media">valentines day social media</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="social media valentines day">social media valentines day</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="social icons watercolor">social icons watercolor</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="shadow social icons">shadow social icons</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="valentine jpegs">valentine jpegs</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="heart social media icons">heart social media icons</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="valentines day inspired social media icons">valentines day inspired social media icons</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="valentines social media buttons">valentines social media buttons</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="valentine\s social media icons">valentine\s social media icons</a></li>
<li><a href="http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/" title="valentine\s day social media icon">valentine\s day social media icon</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/8-valentine-inspired-social-media-icon-designs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create YouTube Popup Buttons with CSS</title>
		<link>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/</link>
		<comments>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 11:53:12 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24819</guid>
		<description><![CDATA[Here&#8217;s  a very cool CSS trick I found that will let you have the same buttons as those in YouTube&#8217;s footer! But first, lots of thanks to the following coders below: Dennis Sa - for the jsbin of the matte buttons http://jsbin.com/efesot/6 Trevor Gerzen – for applying the transitions, and Chris Coyier &#8211; for coming [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration: underline;"> </span></strong>Here&#8217;s  a very cool CSS trick I found that will let you have the same buttons as those in YouTube&#8217;s footer! But first, lots of thanks to the following coders below:</p>
<ul>
<li><a href="http://forrst.me/mdennisa"><strong>Dennis Sa</strong></a><strong> </strong>- for the jsbin of the matte buttons http://jsbin.com/efesot/6</li>
<li><a href="http://dabblet.com/gist/1590204"><strong>Trevor Gerzen</strong></a><strong> </strong>– for applying the transitions, and</li>
<li><a href="http://chriscoyier.net/"><strong>Chris Coyier</strong></a> &#8211; for coming up with this neat trick and sharing it on the web.</li>
</ul>
<p>&nbsp;</p>
<p><img class="aligncenter size-medium wp-image-24821" title="YouTube buttons" src="http://blogfreakz.com/wp-content/uploads/2012/02/114-285x117.jpg" alt="114 285x117 How to Create YouTube Popup Buttons with CSS" width="285" height="117" /></p>
<p>&nbsp;</p>
<p><strong>HTML</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;button role=&#8221;button&#8221;&gt;</span></p>
<p><span style="color: #003366;">Button #1</span></p>
<p><span style="color: #003366;">&lt;/button&gt;</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p>As for the base styles for all three states (default, hover, active):</p>
<p><strong>CSS</strong></p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">.button {</span></p>
<p><span style="color: #003366;">border: 1px solid #DDD;</span></p>
<p><span style="color: #003366;">border-radius: 3px;</span></p>
<p><span style="color: #003366;">text-shadow: 0 1px 1px   white;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: 0 1px   1px #fff;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    0 1px 1px #fff;</span></p>
<p><span style="color: #003366;">box-shadow:         0 1px 1px #fff;</span></p>
<p><span style="color: #003366;">font: bold 11px Sans-Serif;</span></p>
<p><span style="color: #003366;">padding: 6px 10px;</span></p>
<p><span style="color: #003366;">white-space: nowrap;</span></p>
<p><span style="color: #003366;">vertical-align: middle;</span></p>
<p><span style="color: #003366;">color: #666;</span></p>
<p><span style="color: #003366;">background: transparent;</span></p>
<p><span style="color: #003366;">cursor: pointer;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.button:hover, .button:focus {</span></p>
<p><span style="color: #003366;">border-color: #999;</span></p>
<p><span style="color: #003366;">background:   -webkit-linear-gradient(top, white, #E0E0E0);</span></p>
<p><span style="color: #003366;">background:    -moz-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">background:     -ms-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">background:      -o-linear-gradient(top, white,   #E0E0E0);</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: 0 1px   2px rgba(0,0,0,0.25), inset 0 0 3px #fff;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    0 1px 2px rgba(0,0,0,0.25), inset 0 0 3px   #fff;</span></p>
<p><span style="color: #003366;">box-shadow:         0 1px 2px rgba(0,0,0,0.25), inset 0   0 3px #fff;</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">.button:active {</span></p>
<p><span style="color: #003366;">border: 1px solid #AAA;</span></p>
<p><span style="color: #003366;">border-bottom-color: #CCC;</span></p>
<p><span style="color: #003366;">border-top-color: #999;</span></p>
<p><span style="color: #003366;">-webkit-box-shadow: inset 0   1px 2px #aaa;</span></p>
<p><span style="color: #003366;">-moz-box-shadow:    inset 0 1px 2px #aaa;</span></p>
<p><span style="color: #003366;">box-shadow:         inset 0 1px 2px #aaa;</span></p>
<p><span style="color: #003366;">background:   -webkit-linear-gradient(top, #E6E6E6, gainsboro);</span></p>
<p><span style="color: #003366;">background:    -moz-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">background:     -ms-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">background:      -o-linear-gradient(top, #E6E6E6,   gainsboro);</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>&nbsp;</p>
<p><strong>NOTE</strong>: This is short tutorial just teaches you how to mimic the look and not the function. So if you want to be able to include menu functionality on the buttons (like YouTube does) you can check out this<strong> <a href="http://net.tutsplus.com/tutorials/javascript-ajax/5-ways-to-make-ajax-calls-with-jquery/">link</a></strong> and try incorporating the code there with the one here.</p>
<p><a href="http://css-tricks.com/examples/YouTubeButtons/"><strong>Demo</strong></a></p>
<p><a href="http://css-tricks.com/examples/YouTubeButtons.zip"><strong>Download Files</strong></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="popup white css">popup white css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube buttons css">youtube buttons css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="css youtube buttons">css youtube buttons</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube popup buttons">youtube popup buttons</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube css buttons">youtube css buttons</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube button css">youtube button css</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube icons">youtube icons</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="popup css3">popup css3</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="popup buttons design">popup buttons design</a></li>
<li><a href="http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/" title="youtube">youtube</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/how-to-create-youtube-popup-buttons-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display your yahoo messenger online status on your blog</title>
		<link>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/</link>
		<comments>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 21:52:30 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[online status]]></category>
		<category><![CDATA[yahoo messenger]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21916</guid>
		<description><![CDATA[How to Display your Yahoo Messenger Online status on your Blog Ever visited a blog, and wish you can IM that blogger right away to ask a quick question? Well&#8230; now you can! This little widget allows you to alert your readers when you are signed on, and ready for quicky conversations on Yahoo Messengner. [...]]]></description>
			<content:encoded><![CDATA[<p>How to Display your Yahoo Messenger Online status on your Blog</p>
<p>Ever visited a blog, and wish you can IM that blogger right away to ask a quick question? Well&#8230; now you can!</p>
<p>This little widget allows you to alert your readers when you are signed on, and ready for quicky conversations on Yahoo Messengner. This is just another great way for you to keep in touch with your readers!</p>
<p>By signing into your yahoo messenger application, it will automatically show your Yahoo Online status in your blog.</p>
<p>Below is the tutuorial how to set this up:</p>
<p>1. Login into your blog dashboard and add Gadget / Wideget HTML / Javascript.</p>
<p>2. Copy and Paste this code below:</p>
<p><a rel="attachment wp-att-21936" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-code/"><img class="aligncenter size-full wp-image-21936" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-code.png" alt="yahoo code How to Display your yahoo messenger online status on your blog" width="411" height="197" title="How to Display your yahoo messenger online status on your blog" /></a></p>
<p>3. Change  &#8220;your-yahoo-id&#8221; to your Yahoo Messenger UserID</p>
<p>4. Save your Gadget</p>
<p>5. You also can customize the Yahoo Messenger Status Icon in your blog, by simply changing number in t=1  to the number that you want.<strong> </strong></p>
<p><strong>Note</strong>: t number range 1 to 24</p>
<p><strong>Below is the Yahoo Messenger Status Icon broken down in sets of 5<br />
</strong></p>
<p><strong>Code t=1 thru t=5                                                                      Code t=6 thru t=10<br />
</strong></p>
<p><strong><a rel="attachment wp-att-21919" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-1-5/"><img class="alignleft size-full wp-image-21919" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-1-5.png" alt="yahoo 1 5 How to Display your yahoo messenger online status on your blog" width="182" height="227" title="How to Display your yahoo messenger online status on your blog" /></a><a rel="attachment wp-att-21920" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-6-10/"><img class="aligncenter size-full wp-image-21920" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-6-10.png" alt="yahoo 6 10 How to Display your yahoo messenger online status on your blog" width="196" height="488" title="How to Display your yahoo messenger online status on your blog" /></a></strong></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><strong>Code t=11 thru t=15                                                                  Code t=16 thru t=20</strong></p>
<p style="text-align: center"><strong><a rel="attachment wp-att-21921" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-11-15/"><img class="alignleft size-full wp-image-21921" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-11-15.png" alt="yahoo 11 15 How to Display your yahoo messenger online status on your blog" width="197" height="612" title="How to Display your yahoo messenger online status on your blog" /></a></strong><a rel="attachment wp-att-21923" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-21-24/"><strong> </strong></a><strong><a rel="attachment wp-att-21922" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-16-20/"><img class="aligncenter size-full wp-image-21922" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-16-20.png" alt="yahoo 16 20 How to Display your yahoo messenger online status on your blog" width="203" height="631" title="How to Display your yahoo messenger online status on your blog" /></a><br />
</strong><br />
<strong>Code t=21 thru t=24</strong></p>
<p style="text-align: center"><a rel="attachment wp-att-21923" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-21-24/"><img class="aligncenter size-full wp-image-21923" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-21-24.png" alt="yahoo 21 24 How to Display your yahoo messenger online status on your blog" width="206" height="513" title="How to Display your yahoo messenger online status on your blog" /></a></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><strong>Enjoy!<br />
</strong></p>
<p style="text-align: left"><strong><br />
</strong></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo custom icon online messenger javascript">yahoo custom icon online messenger javascript</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo messenger online">yahoo messenger online</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="cakephp yahoo messenger">cakephp yahoo messenger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="display yahoo!messenger icon on your website">display yahoo!messenger icon on your website</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="ym chat icon jquery">ym chat icon jquery</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="how to display messenger status online">how to display messenger status online</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="website yahoo status icon template">website yahoo status icon template</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo online indicator cakephp">yahoo online indicator cakephp</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="how to show yahoo messenger in blog">how to show yahoo messenger in blog</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="how to show yahoo status in wordpress">how to show yahoo status in wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add a Facebook &#8220;Like&#8221; button to your WordPress Blogs</title>
		<link>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/</link>
		<comments>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 18:24:45 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[apprearance]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[facebook like]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21539</guid>
		<description><![CDATA[Now, it is easier than ever to add the Facebook famous &#8220;Like&#8221;/&#8221;Recommend&#8221; to your posts and increase your blog popularity. The “Like” button allows users to share their ‘like’ of your WordPress Blog with their friends on Facebook. Every time a user clicks on the “Like” button on your blog, it creates a status update [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>Now, it is easier than ever to add the Facebook famous &#8220;Like&#8221;/&#8221;Recommend&#8221; to your posts and increase your blog popularity. The “Like” button allows users to share their ‘like’ of your WordPress Blog with their friends on Facebook.</p>
<p>Every time a user clicks on the “Like” button on your blog, it creates a status update on the user’s Facebook News Feed with a link back to your WordPress Blog.</p>
<p>Here is how you do it:</p>
<p>1.       Login as administrator to the WordPress admin panel.</p>
<p>2.       Go to Appearance -&gt; Editor.</p>
<p><a rel="attachment wp-att-21578" href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/attachment/appearance-editor/"><img class="aligncenter size-full wp-image-21578" src="http://blogfreakz.com/wp-content/uploads/2011/08/Appearance-Editor.jpg" alt="Appearance Editor How to add a Facebook Like button to your WordPress Blogs" width="1408" height="689" title="How to add a Facebook Like button to your WordPress Blogs" /></a></p>
<p>3.       Place the following code wherever you want the like button to appear:</p>
<p><em>&lt;iframe src=&#8221;http://www.facebook.com/plugins/like.php?href=&lt;?php echo urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=false&amp;amp;width=350&amp;amp;action=like&amp;amp;colorscheme=light&#8221; scrolling=&#8221;no&#8221; frameborder=&#8221;0&#8243; allowTransparency=&#8221;true&#8221; style=&#8221;border:none; overflow:hidden; width:350px; height:25px&#8221;&gt;&lt;/iframe&gt;</em></p>
<p>4.       Save the changes, and the final result should look like this:</p>
<p><a rel="attachment wp-att-21581" href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/attachment/facebook-like/"><img class="aligncenter size-full wp-image-21581" src="http://blogfreakz.com/wp-content/uploads/2011/08/facebook-like.png" alt="facebook like How to add a Facebook Like button to your WordPress Blogs" width="1316" height="727" title="How to add a Facebook Like button to your WordPress Blogs" /></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="like button">like button</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like">facebook like</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook style">facebook style</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="wordpress admin panel">wordpress admin panel</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="status likes for facebook codes">status likes for facebook codes</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like button">facebook like button</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="add news facebook code">add news facebook code</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="current new facebook style">current new facebook style</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook admin panel">facebook admin panel</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="ajax iframe facebook">ajax iframe facebook</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS3 Facebook Buttons</title>
		<link>http://blogfreakz.com/button/css3-facebook-buttons/</link>
		<comments>http://blogfreakz.com/button/css3-facebook-buttons/#comments</comments>
		<pubDate>Wed, 04 May 2011 13:18:48 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[Facebook]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19673</guid>
		<description><![CDATA[Nicolas Gallagher, front-end developer is create simple CSS to recreate the appearance of Facebook&#8217;s buttons. This button help us to create facebook alike basic buttons, larger buttons, grouped buttons, grouped buttons and buttons with icons. The buttons full support for Firefox 3.5+, Google Chrome, Safari 4+, IE 9+, Opera 11.10+. Some CSS3 enhancements are not [...]]]></description>
			<content:encoded><![CDATA[<p>Nicolas Gallagher, front-end developer is create simple CSS to recreate the appearance of <a title="facebook buttons" rel="nofollow" href="http://nicolasgallagher.com/lab/css3-facebook-buttons/" target="_blank">Facebook&#8217;s buttons</a>. This button help us to create facebook alike basic buttons, larger buttons, grouped buttons, grouped buttons and buttons with icons.</p>
<p><span id="more-19673"></span></p>
<p><a rel="nofollow" href="http://nicolasgallagher.com/lab/css3-facebook-buttons/"><img class="alignnone size-full wp-image-19677" title="facebook-butons" src="http://blogfreakz.com/wp-content/uploads/2011/05/facebook-butons.jpg" alt="facebook butons CSS3 Facebook Buttons" width="600" height="300" /></a></p>
<p>The buttons full support for Firefox 3.5+, Google Chrome, Safari 4+, IE 9+, Opera 11.10+. Some CSS3 enhancements are not supported in older versions of Opera and IE. The use of icons is not supported in IE 6 or IE 7.</p>
<p class="download">Requirements: -<br />
Demo: <a title="facebook buttons" rel="nofollow" href="http://nicolasgallagher.com/lab/css3-facebook-buttons/" target="_blank">http://nicolasgallagher.com/lab/css3-facebook-buttons/</a><br />
License: Public Domain License</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="css3 facebook buttons">css3 facebook buttons</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="css3 facebook button">css3 facebook button</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="CSS3 Facebook">CSS3 Facebook</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook buttons">facebook buttons</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook button css3">facebook button css3</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="button facebook css">button facebook css</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook buttons css3">facebook buttons css3</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="facebook button css">facebook button css</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="css3 button facebook">css3 button facebook</a></li>
<li><a href="http://blogfreakz.com/button/css3-facebook-buttons/" title="how to create facebook button">how to create facebook button</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/button/css3-facebook-buttons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Chunky 3D Web Buttons (PSD)</title>
		<link>http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/</link>
		<comments>http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/#comments</comments>
		<pubDate>Mon, 11 Apr 2011 15:37:25 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18571</guid>
		<description><![CDATA[3d web buttons are very popular recently . Premiumpixels is sharing free set of  3D web button that you can use for Your web design project. The download (PSD) includes a variety of colours and adding your own is a simple process. With this download all the hard work is done for you as the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>3d web buttons</strong> are very popular recently . Premiumpixels is sharing free set of  3D web button that you can use for Your web design project.</p>
<p><span id="more-18571"></span><a rel="nofollow" href="http://www.premiumpixels.com/freebies/chunky-3d-webbuttons-psd"><img class="alignnone size-full wp-image-18573" title="3d-web-button" src="http://blogfreakz.com/wp-content/uploads/2011/04/3d-web-button.jpg" alt="3d web button Free Chunky 3D Web Buttons (PSD)" width="600" height="300" /></a></p>
<p>The download (PSD) includes a variety of colours and adding your own is a  simple process. With this download all the hard work is done for you as  the buttons include a normal, hover and active state.</p>
<p class="download">Website: <a title="3d web buttons" rel="nofollow" href="http://www.premiumpixels.com/freebies/chunky-3d-webbuttons-psd" target="_blank">http://www.premiumpixels.com/freebies/chunky-3d-webbuttons-psd</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="web button">web button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="website button">website button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="button free">button free</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="WEB buttons">WEB buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="free button psd">free button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="buttons for website">buttons for website</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="button 3d free">button 3d free</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="website button images">website button images</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="simple website button">simple website button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/" title="3D WEBSITE">3D WEBSITE</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/photoshop-tutorial/free-chunky-3d-web-buttons-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Slick Modern Buttons PSD</title>
		<link>http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/</link>
		<comments>http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/#comments</comments>
		<pubDate>Sun, 03 Apr 2011 09:55:26 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=18324</guid>
		<description><![CDATA[Supratim, an Electronics and Communication Engineering student in India is sharing free set of modern 9 web buttons that you can use in website interfaces, call-to-action buttons, web forms, etc. The PSD file is organized and can be easily modified to suit your needs. This web button is free to user for commercial and personal [...]]]></description>
			<content:encoded><![CDATA[<p>Supratim, an Electronics and Communication Engineering student in India is sharing free set of modern 9 web buttons that you can use in website interfaces, call-to-action buttons, web forms, etc. The PSD file is organized and can be easily modified to suit your needs.<br />
<span id="more-18324"></span></p>
<p><a rel="nofollow" href="http://designinstruct.com/free-resources/psds/slick-modern-buttons-psd"><img class="alignnone size-full wp-image-18336" title="psd-buttons" src="http://blogfreakz.com/wp-content/uploads/2011/04/psd-buttons.jpg" alt="psd buttons Free Slick Modern Buttons PSD" width="600" height="254" /></a></p>
<p>This web button is free to user for commercial and personal projects under Freebie Files Usage Terms, but you are not allowed to redistribute or sell files, attribution encouraged.</p>
<p class="download">Website: <a title="slick-modern-buttons-psd" rel="nofollow" href="http://designinstruct.com/free-resources/psds/slick-modern-buttons-psd" target="_blank">http://designinstruct.com/free-resources/psds/slick-modern-buttons-psd</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="button psd">button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="psd buttons">psd buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="psd button">psd button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="buttons psd">buttons psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="modern button">modern button</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="modern buttons">modern buttons</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="free button psd">free button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="web button free">web button free</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="modern button psd">modern button psd</a></li>
<li><a href="http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/" title="html5 buttons psds">html5 buttons psds</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/photoshop-tutorial/free-slick-modern-buttons-psd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select 2 Buttons &#8211; An  Alternative Way To Displaying Standard HTML Selects</title>
		<link>http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/</link>
		<comments>http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 13:39:25 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=17500</guid>
		<description><![CDATA[Select2Buttons is a jQuery plugin that provides an alternative to the standard html select. The plugin converts selects into a series of button like elements, and if used correctly can provide a better visual representation of the options available to a user. To implement this plugin is pretty simple. Add a standard select to the [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="nofollow" title="select2Buttons" href="https://github.com/o-sam-o/jquery.select2Buttons" target="_blank">Select2Buttons</a> is a jQuery plugin that provides an alternative to the standard html select. The plugin converts selects into a series of button like elements, and if used correctly can provide a better visual representation of the options available to a user.</p>
<p><span id="more-17500"></span><a  rel="nofollow" href="http://o-sam-o.github.com/select2Buttons/"><img class="alignnone size-full wp-image-17502" title="select2buttons" src="http://blogfreakz.com/wp-content/uploads/2011/03/select2buttons.jpg" alt="select2buttons Select 2 Buttons   An  Alternative Way To Displaying Standard HTML Selects" width="600" height="300" /></a></p>
<p>To implement this plugin is pretty simple. Add a standard select to the page and then make 1 jQuery call to convert it into buttons:</p>
<pre class="brush: php;">
&lt;script&gt;
   $('select[name=simple-select]').select2Buttons();
&lt;/script&gt;
</pre>
<p>It has several options for customization, such as js change callbacks, disabled options, disabled selects, OptGroups and allows no default selection (like threadless).</p>
<p class="download">
Requirements: jQuery Framework<br />
Demo: <a  rel="nofollow" title="select2Buttons" href="http://o-sam-o.github.com/select2Buttons/" target="_blank">http://o-sam-o.github.com/select2Buttons</a><br />
License: MIT License
</p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="select">select</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="html select alternative">html select alternative</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="pretty html button">pretty html button</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="jquery select alternative">jquery select alternative</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="transform select into buttons html">transform select into buttons html</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="Select 2 Buttons">Select 2 Buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="html select button image">html select button image</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="html 2 buttons">html 2 buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="select as buttons">select as buttons</a></li>
<li><a href="http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/" title="Select to Buttons jquery">Select to Buttons jquery</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/select-2-buttons-an-alternative-way-to-displaying-standard-html-selects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

