<?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>BootStrap</title>
	<atom:link href="http://bootstrap.pk/feed/" rel="self" type="application/rss+xml" />
	<link>http://bootstrap.pk</link>
	<description>FreePlay</description>
	<lastBuildDate>Mon, 02 Jan 2012 12:13:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>10 lifesaving jQuery snippets</title>
		<link>http://bootstrap.pk/tutorials/10-lifesaving-jquery-snippets/</link>
		<comments>http://bootstrap.pk/tutorials/10-lifesaving-jquery-snippets/#comments</comments>
		<pubDate>Mon, 02 Jan 2012 11:20:44 +0000</pubDate>
		<dc:creator>Tamuir khan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2982</guid>
		<description><![CDATA[Developing interactive components for websites usually require the same code like equal div Height, Browser detection, preloading images, disabling right-click.. etc. Yeah you guessed it right, today we gonna share some life saving jQuery snippets that will help you do simple tasks. 01- Display Loading Graphic Until Page Fully Loaded $(window).load(function() { // Animate loader [...]]]></description>
			<content:encoded><![CDATA[<p>Developing interactive components for websites usually require the same code like equal div Height, Browser detection, preloading images, disabling right-click.. etc.<br />
<br />
<img src="http://bootstrap.pk/media/2012/01/10-life-saving-jQuery-snippets.jpg" alt="10 lifesaving jQuery snippets" /><br />
<br />Yeah you guessed it right, today we gonna share some life saving <strong>jQuery snippets </strong>that will help you do simple tasks.</p>
<h3 class="blueheading">01- Display Loading Graphic Until Page Fully Loaded</h3>
<pre class="brush: javascript">
$(window).load(function() {
    // Animate loader off screen
    $(&quot;#loader&quot;).animate({
        top: -200
        }, 1500);
});
// where loader is &lt;img src=&quot;download.png&quot; id=&quot;loader&quot;&gt;
//and first element to be loaded.
</pre>
<h3 class="blueheading">02- How to Bind a function to an event</h3>
<pre class="brush: javascript">
$(&#039;#foo&#039;).bind(&#039;click&#039;, function() {
  alert(&#039;User clicked on &quot;foo.&quot;&#039;);
});
</pre>
<h3 class="blueheading">03- Smooth scrolling to an anchor</h3>
<pre class="brush: javascript">
$(&#039;#foo&#039;).bind(&#039;click&#039;, function() {
  alert(&#039;User clicked on &quot;foo.&quot;&#039;);
});
</pre>
<h3 class="blueheading">04- How to Switch StyleSheets With jQuery</h3>
<pre class="brush: javascript">
	$(&#039;link[media=&#039;screen&#039;]&#039;).attr(&#039;href&#039;, &#039;Alternative.css&#039;);
</pre>
<h3 class="blueheading">05- Add :nth-of-type to jQuery</h3>
<pre class="brush: javascript">

$.expr[&#039;:&#039;][&#039;nth-of-type&#039;] = function(elem, i, match) {
    var parts = match[3].split(&quot;+&quot;);
    return (i + 1 - (parts[1] || 0)) % parseInt(parts[0], 10) === 0;
};
</pre>
<h3 class="blueheading">06- How to find out the index of an element in an unordered set</h3>
<pre class="brush: javascript">
$(document).ready(function(){
 $(&quot;ul &gt; li&quot;).click(function () {
     var index = $(this).prevAll().length;
 });
});
</pre>
<h3 class="blueheading">07- Disable right mouse click</h3>
<pre class="brush: javascript">

$(document).ready(function(){
    $(document).bind(&quot;contextmenu&quot;,function(e){
        return false;
    });
});
</pre>
<h3 class="blueheading">08- How to refresh the src of an image with jQuery</h3>
<pre class="brush: javascript">

$(document).ready(function(){
   $(imageobj).attr(&#039;src&#039;, $(imageobj)
           .attr(&#039;src&#039;) + &#039;?&#039; + Math.random() );
});
</pre>
<h3 class="blueheading">09- Automatically Discover Document Links And Apply Class</h3>
<pre class="brush: javascript">

$(document).ready(function(){
   $(&#039;a[href]&#039;).each(function() {
   if((C = $(this).attr(&#039;href&#039;).match(/[.](doc|xls|pdf)$/))) {
       $(this).addClass(C[1]);
   }
});
});
</pre>
<h3 class="blueheading">10- Automatically Discover Document Links And Apply Class</h3>
<pre class="brush: javascript">

$(document).ready(function(){
   $(&#039;a[href]&#039;).each(function() {
   if((C = $(this).attr(&#039;href&#039;).match(/[.](doc|xls|pdf)$/))) {
       $(this).addClass(C[1]);
   }
});
});
</pre>
<p>Hope this helps.</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Ftutorials%2F10-lifesaving-jquery-snippets%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Ftutorials%2F10-lifesaving-jquery-snippets%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/tutorials/10-lifesaving-jquery-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Free Freshly Baked Pixel Perfect UI Elements</title>
		<link>http://bootstrap.pk/freebies/15-free-freshly-baked-pixel-perfect-ui-elements/</link>
		<comments>http://bootstrap.pk/freebies/15-free-freshly-baked-pixel-perfect-ui-elements/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 19:19:26 +0000</pubDate>
		<dc:creator>Tamuir khan</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[elements]]></category>
		<category><![CDATA[Freebie]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2984</guid>
		<description><![CDATA[And here we are again, with another great hand picked free to download list, which will quench your thirst for UI Elements and will be very handy in your next project. White Blue Web/UI Elements Dark UI Kit (Part 1 of 2) Blaubarry UI Kit Sleek UI Elements UI Bundle iTunes Inspired UI Kit Butterscotch [...]]]></description>
			<content:encoded><![CDATA[<p>And here we are again, with another great hand picked free to download list, which will quench your thirst for UI Elements and will be very handy in your next project.</p>
<h3 class="blueHeading">White Blue Web/UI Elements</h3>
<p><a href="http://shegystudio.deviantart.com/art/White-blue-web-ui-elements-pac-213089794"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-01.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Dark UI Kit (Part 1 of 2)</h3>
<p><a href="http://www.icondeposit.com/design:29"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-02.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements"  /></a></p>
<h3 class="blueHeading">Blaubarry UI Kit</h3>
<p><a href="http://www.designkindle.com/2011/07/07/blaubarry-ui-kit/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-03.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Sleek UI Elements</h3>
<p><a href="http://www.designkindle.com/2011/07/25/sleek-ui-elements/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-04.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">UI Bundle</h3>
<p><a href="http://www.icondeposit.com/design:25"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-05.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" width="630" height="473" class="alignnone size-full wp-image-3005" /></a></p>
<h3 class="blueHeading">iTunes Inspired UI Kit</h3>
<p><a href="http://www.premiumpixels.com/freebies/itunes-inspired-ui-kit-psd/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-06.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Butterscotch UI Kit</h3>
<p><a href="http://www.designkindle.com/2011/10/31/butterscotch-ui-kit/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-07.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Black UI Kit</h3>
<p><a href="http://www.designkindle.com/2011/05/09/black-ui-kit/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-08.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Dark UI kit (Part 2 of 2)</h3>
<p><a href="http://www.icondeposit.com/design:31"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-09.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Web UI Set</h3>
<p><a href="http://duckfiles.com/70-user-interface-elements-free-psd/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-10.png" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Futurico – Free User Interface Elements Pack</h3>
<p><a href="http://designmodo.com/futurico/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-11.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Cloudy UI kit</h3>
<p><a href="http://365psd.com/day/2-186/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-12.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" width="630" height="473" class="alignnone size-full wp-image-3005" /></a></p>
<h3 class="blueHeading">Modern UI Kit</h3>
<p><a href="http://www.icondeposit.com/design:32"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-13.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Glossy 3D UI Kit</h3>
<p><a href="http://medialoot.com/item/glossy-3d-ui-kit/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-14.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Moonify UI</h3>
<p><a href="http://www.designkindle.com/2011/12/07/moonify-ui/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-15.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Detailed UI Kit</h3>
<p><a href="http://www.icondeposit.com/design:24"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-16.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" width="630" height="473" class="alignnone size-full wp-image-3005" /></a></p>
<h3 class="blueHeading">Vertical Navigation Menu</h3>
<p><a href="http://www.premiumpixels.com/freebies/vertical-navigation-menu-psd/"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-17.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a></p>
<h3 class="blueHeading">Vector UI Kit</h3>
<p><a href="http://www.icondeposit.com/design:9"><img src="http://bootstrap.pk/media/2011/12/18-Free-Freshly-Baked-Pixel-Perfect-UI-Elements-18.jpg" alt="" title="18 Free Freshly Baked Pixel Perfect UI Elements" /></a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Ffreebies%2F15-free-freshly-baked-pixel-perfect-ui-elements%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Ffreebies%2F15-free-freshly-baked-pixel-perfect-ui-elements%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/freebies/15-free-freshly-baked-pixel-perfect-ui-elements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freaking Awesome Free Font of the Week #1</title>
		<link>http://bootstrap.pk/freebies/freaking-awesome-free-font-of-the-week-1/</link>
		<comments>http://bootstrap.pk/freebies/freaking-awesome-free-font-of-the-week-1/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 11:11:34 +0000</pubDate>
		<dc:creator>Tamuir khan</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Typography]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2954</guid>
		<description><![CDATA[This week, the awesome free font award goes to Code, this amazing font is brought to us by Font Fabric. It can be used for any type of graphic design, print, motion graphics, web and for other gazillion stuff, oh and specially for T-Shirts. Code Light Code Bold Some cool usage. Until Next Week, Ciao.]]></description>
			<content:encoded><![CDATA[<p>This week, the awesome free font award goes to <strong>Code</strong>, this amazing font is brought to us by <a href="http://fontfabric.com" title="Font Fabric" target="_blank">Font Fabric.</a> It can be used for any type of graphic design, print, motion graphics, web and for other gazillion stuff, oh and specially for T-Shirts.</p>
<h3 class="BlueHeading">Code Light</h3>
<p><img src="http://bootstrap.pk/media/2011/08/CODE-free-font-of-the-week-light.png" alt="Freaking Awesome Free Font of the Week #1" /></p>
<h3 class="BlueHeading">Code Bold</h3>
<p><img src="http://bootstrap.pk/media/2011/08/CODE-free-font-of-the-week-bold.png" alt="Freaking Awesome Free Font of the Week #1" /></p>
<h3 class="BlueHeading">Some cool usage.</h3>
<p><img src="http://bootstrap.pk/media/2011/08/CODE-free-font-of-the-week-use-01.png" alt="Freaking Awesome Free Font of the Week #1" /><br />
<img src="http://bootstrap.pk/media/2011/08/CODE-free-font-of-the-week-use-02.jpg" alt="Freaking Awesome Free Font of the Week #1" /><br />
<img src="http://bootstrap.pk/media/2011/08/CODE-free-font-of-the-week-use-03.png" alt="Freaking Awesome Free Font of the Week #1" /></p>
<p><a target="_blank" href="http://goo.gl/R4LJe"><img class="alignnone size-full wp-image-512" title="Download file" src="http://bootstrap.pk/media/2009/12/download-btn.png" alt="" width="117" height="39" /></a></p>
<p>Until Next Week, Ciao.
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Ffreebies%2Ffreaking-awesome-free-font-of-the-week-1%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Ffreebies%2Ffreaking-awesome-free-font-of-the-week-1%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/freebies/freaking-awesome-free-font-of-the-week-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freebie: Audio Player User Interface with Multiple Skins</title>
		<link>http://bootstrap.pk/articles/freebie-audio-player-user-interface-with-multiple-skins/</link>
		<comments>http://bootstrap.pk/articles/freebie-audio-player-user-interface-with-multiple-skins/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 13:22:17 +0000</pubDate>
		<dc:creator>Tamuir khan</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2942</guid>
		<description><![CDATA[Really? Audio player UI, including 3 skins ? Yes! Today we are releasing, audio player ui, for your next project, zip file includes psd&#8217;s which are properly named, layered and grouped, easy to use, edit and free even for commercial projects The Package includes 3 different skins(psd&#8217;s) let us know if you liked it.]]></description>
			<content:encoded><![CDATA[<p>Really? Audio player UI, including 3 skins ? Yes! Today we are releasing, audio player ui, for your next project, zip file includes psd&#8217;s which are properly named, layered and grouped, easy to use, edit and free even for commercial projects</p>
<p><img src="http://bootstrap.pk/media/2011/08/Audio-Player.jpg" alt="" title="Freebie: Audio Player User Interface with Multiple Skins" width="640" height="976" class="alignnone size-full wp-image-2944" /></p>
<p>The Package includes 3 different skins(psd&#8217;s)</p>
<p>let us know if you liked it.</p>
<p><a target="_blank" href="http://goo.gl/2ZRSV"><img class="alignnone size-full wp-image-512" title="Download file" src="http://bootstrap.pk/media/2009/12/download-btn.png" alt="" width="117" height="39" /></a></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Farticles%2Ffreebie-audio-player-user-interface-with-multiple-skins%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Farticles%2Ffreebie-audio-player-user-interface-with-multiple-skins%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/articles/freebie-audio-player-user-interface-with-multiple-skins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Featured Artist &#8211; Danil Krivoruchko</title>
		<link>http://bootstrap.pk/inspiration/featured-artist-danil-krivoruchko/</link>
		<comments>http://bootstrap.pk/inspiration/featured-artist-danil-krivoruchko/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 05:36:34 +0000</pubDate>
		<dc:creator>Tamuir khan</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[motion design]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2915</guid>
		<description><![CDATA[Today we are featuring an amazing artist from Moscow, Russia Danil Krivoruchko, His work is definitely worth a look. they way he puts together his artwork, its mesmerizing &#8211; and soft on the eyes. Having Interests in identity, interactive work and motion design. Here&#8217;s your inspirational dose for today. TNK Pulsar. Intel Fashion show &#124; [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are featuring an amazing artist from Moscow, Russia <a href="http://www.myshli.com/">Danil Krivoruchko</a>, His work is definitely worth a look. they way he puts together his artwork, its mesmerizing &#8211; and soft on the eyes. Having Interests in identity, interactive work and motion design.</p>
<h3 class="blueHeading">Here&#8217;s your inspirational dose for today.</h3>
<p><br/></p>
<h5><span style="color: #03b5f9;">TNK Pulsar.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=20236808"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=20236808" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">Intel Fashion show | Intro loop.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=25573104"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=25573104" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">MeeGo OS Promo. How MeeGo works with social network.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19522475"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19522475" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">Intel Fashion show | Acer.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=25572381"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=25572381" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">Megafon | Winter sports.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=26418741"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=26418741" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">Music video for KORNEY`s &#8220;FLARES&#8221;.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8755910"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8755910" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">Intel Fashion show | HP.</span><br />
<object width="630" height="360"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=25571928"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=25571928" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="630" height="360" flashvars=""></embed></object></h5>
<p><br/></p>
<h5><span style="color: #03b5f9;">Eurovision`09 IDs sketches.</span><br />
<img width="630px" src="http://bootstrap.pk/media/2011/07/featuredArtist_DanielK_card_russia_1.jpg" alt="Featured Artist - Danil Krivoruchko" /><br />
<img width="630px" src="http://bootstrap.pk/media/2011/07/featuredArtist_DanielK_card_russia_2.jpg" alt="Featured Artist - Danil Krivoruchko" /></p>
<p>That&#8217;s it for today folks and do tell us which creative artists you like/follow for inspiration.<br />
<br/><br/></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Ffeatured-artist-danil-krivoruchko%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Ffeatured-artist-danil-krivoruchko%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/inspiration/featured-artist-danil-krivoruchko/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20 Amazing Retro HTML5 Websites</title>
		<link>http://bootstrap.pk/inspiration/20-amazing-retro-html5-websites/</link>
		<comments>http://bootstrap.pk/inspiration/20-amazing-retro-html5-websites/#comments</comments>
		<pubDate>Sun, 26 Jun 2011 06:14:04 +0000</pubDate>
		<dc:creator>LabibJ</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Retro]]></category>
		<category><![CDATA[Showcase]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2881</guid>
		<description><![CDATA[Hi Last week we posted an showcased some Amazing HTML5 Websites for your inspiration. This week, it&#8217;s 20 Amazing Retro HTML5 Websites. As the next-gen fundamental markup language, HTML5 has already redefined the possibilities of ideas in web design &#038; development. Below are some websites that have done exactly that with a little twist of [...]]]></description>
			<content:encoded><![CDATA[<p>Hi<br />
Last week we posted an showcased some <a href="http://bootstrap.pk/inspiration/showcase-amazing-html5-websites-1/">Amazing HTML5 Websites</a> for your inspiration.</p>
<p>This week, it&#8217;s 20 Amazing Retro HTML5 Websites.<br />
As the next-gen fundamental markup language, HTML5 has already redefined the possibilities of ideas in web design &#038; development. Below are some websites that have done exactly that with a little twist of Vintage &#038; Retro design.</p>
<p>Enjoy.</p>
<h3 class="blueheading">Visual Republic</h3>
<p><a href="http://visualrepublic.net/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-01.png" alt="" /></a></p>
<h3 class="blueheading">Paradox-Labs</h3>
<p><a href="http://www.paradox-labs.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-02.png" alt="" /></a></p>
<h3 class="blueheading">Pointless Corp</h3>
<p><a href="http://www.pointlesscorp.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-03.png" alt="" /></a></p>
<h3 class="blueheading">Love, Detroit</h3>
<p><a href="http://love-detroit.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-04.png" alt="" /></a></p>
<h3 class="blueheading">Jewell And Ginnie</h3>
<p><a href="http://jewellandginnie.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-05.png" alt="" /></a></p>
<h3 class="blueheading">Rainypixels</h3>
<p><a href="http://rainypixels.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-06.png" alt="" /></a></p>
<h3 class="blueheading">Ryan Scherf</h3>
<p><a href="http://www.ryanscherf.net/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-07.png" alt="" /></a></p>
<h3 class="blueheading">BountyBev</h3>
<p><a href="http://www.bountybev.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-08.png" alt="" /></a></p>
<h3 class="blueheading">HD Live</h3>
<p><a href="http://www.hd-live.co.uk/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-09.png" alt="" /></a></p>
<h3 class="blueheading">Florida After Seven</h3>
<p><a href="http://floridaafterseven.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-10.png" alt="" /></a></p>
<h3 class="blueheading">Quality Laundry Professionals</h3>
<p><a href="http://qlpros.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-11.png" alt="" /></a></p>
<h3 class="blueheading">Love For Japan</h3>
<p><a href="http://www.loveforjapan.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-12.png" alt="" /></a></p>
<h3 class="blueheading">Marc Thomas</h3>
<p><a href="http://mrcthms.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-13.png" alt="" /></a></p>
<h3 class="blueheading">Peter Coles</h3>
<p><a href="http://www.petercolesdc.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-14.png" alt="" /></a></p>
<h3 class="blueheading">Orlando Advertising</h3>
<p><a href="http://soapboxmarketinggroup.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-15.png" alt="" /></a></p>
<h3 class="blueheading">EduSoCal’11</h3>
<p><a href="http://edusocal.org/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-16.png" alt="" /></a></p>
<h3 class="blueheading">Bronco</h3>
<p><a href="http://www.bronco.co.uk/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-17.png" alt="" /></a></p>
<h3 class="blueheading">Activate</h3>
<p><a href="http://preparetoactivate.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-18.png" alt="" /></a></p>
<h3 class="blueheading">Dilly Deli</h3>
<p><a href="http://www.dillydelitulsa.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-19.png" alt="" /></a></p>
<h3 class="blueheading">FRONTEND 2011</h3>
<p><a href="http://www.frontend2011.com/"><img src="http://bootstrap.pk/media/2011/06/20-amazing-retro-html5-websites-20.png" alt="" /></a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2F20-amazing-retro-html5-websites%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2F20-amazing-retro-html5-websites%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/inspiration/20-amazing-retro-html5-websites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS BASED THREE STATES BUTTON &#8211; BETTER UX</title>
		<link>http://bootstrap.pk/tutorials/css-based-three-state-buttons-better-ux/</link>
		<comments>http://bootstrap.pk/tutorials/css-based-three-state-buttons-better-ux/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 17:03:19 +0000</pubDate>
		<dc:creator>Tamuir khan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[UI]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2852</guid>
		<description><![CDATA[Hello Folks, here i am with another small but very nifty technique for making Three states button, i was rigging the User Interface for a prototype that i was building, it required me to have push buttons that would be controlled through Javascript&#124;jQuery later on. My Image Sprites So what i did was create a [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Folks, here i am with another small but very nifty technique for making<strong> Three states button</strong>, i was rigging the User Interface for a prototype that i was building, it required me to have push buttons that would be controlled through Javascript|jQuery later on. </p>
<h3>My Image Sprites</h3>
<p><img src="http://bootstrap.pk/media/2011/06/Css-Based-Three-State-Buttons-01.jpg" alt="" title="CSS BASED THREE STATE BUTTONS – BETTER UX" width="600" height="359" class="alignnone size-full wp-image-2857" /><br />
So what i did was create a simple Html based Anchor Tags and by using one of the Image replacement techniques, i was able to achieve this effect, which i thought i would share with you guys as a small tutorial.</p>
<h3>Here is my Html Markup</h3>
<pre class="brush: html">
&amp;lt;body&amp;gt;
&amp;lt;div id=&amp;quot;container&amp;quot;&amp;gt;
  &amp;lt;h1&amp;gt;DEMO: CSS Based Three State Buttons - Better UX&amp;lt;/h1&amp;gt;
  &amp;lt;div id=&amp;quot;submitBtn&amp;quot;&amp;gt; &amp;lt;a class=&amp;quot;submitApp&amp;quot; href=&amp;quot;#&amp;quot; title=&amp;quot;Submit my Application&amp;quot;&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;
  &amp;lt;div id=&amp;quot;attachImg&amp;quot;&amp;gt; &amp;lt;a class=&amp;quot;attach&amp;quot; href=&amp;quot;#&amp;quot; title=&amp;quot;Submit my Application&amp;quot;&amp;gt;&amp;lt;/a&amp;gt; &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
</pre>
<h3>CSS Styles</h3>
<pre class="brush: css">
* {
	margin:0px;
	padding:0px;
}
body {
	font-family: &#039;Nunito&#039;, serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	text-shadow: none;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0em;
	word-spacing: 0em;
	line-height: 1.2;
}
#container {
	margin: 0px auto;
	overflow:hidden;
	width: 800px;
}
h1 {
	padding: 50px 0;
	width: 550px;
}
#submitBtn {
	margin: 15px 0px;
}
a.submitApp {
	background:url(imgs/submitmyapp.png) no-repeat top;
	width: 194px;
	height: 42px;
	text-indent: 9999;
	display:block
}
a.submitApp:hover {
	background-position: 0 -52px;
}
a.submitApp:active {
	background-position: 0 -105px;
}
a.attach {
	background:url(imgs/attach.png) no-repeat top;
	width: 136px;
	height: 40px;
	text-indent: 9999px;
	display:block
}
a.attach:hover {
	background-position: 0 -42px;
}
a.attach:active {
	background-position: 0 -82px;
}
</pre>
<p><H3>Here&#8217;s how it looks in the browser.</H3><br />
<img src="http://bootstrap.pk/media/2011/06/Css-Based-Three-State-Buttons-02.jpg" alt="" title="CSS BASED THREE STATE BUTTONS – BETTER UX" width="600" height="359" class="alignnone size-full wp-image-2857" /></p>
<p>Until Next time.. <strong>Ciao</strong>!<br />
<br/><br />
<a target="_blank" href="http://goo.gl/hYA2J"><img class="alignnone size-full wp-image-512" style="margin-right: 8px;" title="Download file" src="http://bootstrap.pk/media/2009/12/download-btn.png" alt="Download file" width="117" height="39" /></a><a target="_blank" href="http://bootstrap.pk/demo/threestatebuttons/"><img class="alignnone size-full wp-image-513" title="demo-btn" src="http://bootstrap.pk/media/2009/12/demo-btn.png" alt="demo-btn" width="79" height="39" /></a></p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Ftutorials%2Fcss-based-three-state-buttons-better-ux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Ftutorials%2Fcss-based-three-state-buttons-better-ux%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/tutorials/css-based-three-state-buttons-better-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Random Inspiration #01 &#8211; Creative Ads &amp; Reels</title>
		<link>http://bootstrap.pk/inspiration/random-inspiration-01-creative-ads-reels/</link>
		<comments>http://bootstrap.pk/inspiration/random-inspiration-01-creative-ads-reels/#comments</comments>
		<pubDate>Fri, 24 Jun 2011 02:19:50 +0000</pubDate>
		<dc:creator>LabibJ</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Adverts]]></category>
		<category><![CDATA[Reels]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2781</guid>
		<description><![CDATA[Hello there. Today, I would like to start a continuous weekly thread of Random Inspiration. In this series, I would keep posting creative inspiration, be it videos, art, web work, amazing chocolate designs, you get the idea. It is very essential that each one of us have our own muse. The idea of a muse, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello there.<br />
Today, I would like to start a continuous weekly thread of Random Inspiration.<br />
In this series, I would keep posting creative inspiration, be it videos, art, web work, amazing chocolate designs, you get the idea.</p>
<p>It is very essential that each one of us have our own muse.<br />
The idea of a muse, it&#8217;s gradually being retained only to a specific type of people, although it doesn&#8217;t actually matter whether a person relates to anything creative by life or profession, muse is what keeps him going.</p>
<p>So sit back with that morning cup of joe of yours and I hope you find new inspiration from these Creative Ads &#038; Reels.</p>
<h3 class="blueheading">Unleash Your Fingers</h3>
<p>Discover the art of finger Tutting, a new kind of dance performed by JayFunk, from LA.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-01.jpg" alt="" /><br />
<a href="http://bootstrap.pk/inspiration/random-inspiration-01-creative-ads-reels/"><img src="http://img.youtube.com/vi/rNBpk30U2oo/default.jpg" width="130" height="97" border=0></a></p>
<h3 class="blueheading">Why? by Oliver Latta</h3>
<p>Why? – a personal statement by Oliver Latta for a presentation in his studies…<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-02.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=24772168"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=24772168" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Shift V2 by Mirari</h3>
<p>Experimental short film by Mirari, a unit of directors, designers, and animators.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-03.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=24169968"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=24169968" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Lamborghini &#8220;Aventador&#8221;</h3>
<p><a href="http://www.weareflink.com/">weareflink</a> interprets the Lamborghini Aventador in this morphing video.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-04.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=22230948"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=22230948" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Partitura 001 by Quayola</h3>
<p>Realtime sound visualisation made with custom software “Partitura” Sound by Telefon Tel Aviv.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-05.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=23281150"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=23281150" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Visual Identity for Voyage Group</h3>
<p>creating a fantastic world +++ director’s cut by yasuhiro kobari.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-06.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=22382541"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=22382541" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Offf 2011 Year Zero</h3>
<p>Some more amazing work by Onur Senturk, Enjoy!<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-07.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18857738"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18857738" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Woodkid &#8211; Iron</h3>
<p>Everything in slow motion looks better, and this video proves it…. the ending is epic!<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-08.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=21604065"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=21604065" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Metamaterial</h3>
<p>Metamaterials are artificial materials engineered to have properties that may not be found in nature.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-09.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=20376892"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=20376892" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Moullinex &#8211; Catalina</h3>
<p>Music video for Catalina, a track off the Chocolat EP – Done with Kinect + Processing + Cinema 4D + After Effects.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-10.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19723907"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19723907" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Solar by Ben Reubold</h3>
<p><img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-11.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19899351"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19899351" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Konkreet Performer</h3>
<p>Konkreet Performer is a music control and performance instrument for the iPad. Its unique and intuitive multi-touch interface reconnects the musician’s  actions directly with the music.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-12.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19272580"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19272580" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Onesize Reel</h3>
<p>Onesize latest reel. All work directed, designed and created by Onesize. Music and sound design by <a href="http://www.runsilent.org">Jeff Dodson</a><br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-13.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19445801"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19445801" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Black Ocean Ident</h3>
<p>Brighton, UK based media agency Future Deluxe released nice but short motion identity made for one of their client.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-14.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19402939"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19402939" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Linus Lundin &#8211; Showreel 2010</h3>
<p>A collection of <a href="http://www.linuslundin.se/">Linus Lundi’s</a> latest work including commercial and self initiated projects.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-15.jpg" alt="" /><br />
<object width="580" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19291402"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19291402" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="580" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">GTLK by Andrey Muratov</h3>
<p>Concept: Components of the space. Between existence and “No!”. Alive – аbsorbs.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-16.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19276720"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19276720" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Silent Transitions</h3>
<p>Silent Transitions is a personal project inspired by two verses from Scripture – 2 Samuel 22vs20 and Psalm 46vs10.</p>
<p>Shot with Canon 7D at 60 fps and slowed down to 1% using twixtor, Sigma 30mm f1.4 for the initial scenes and Tokina 11-16mm f2.8 for the jump sequences.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-17.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=19302305"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=19302305" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Warm Signal by silja</h3>
<p>A short abstract movie dealing with nature and maritime creatures, metamorphosis and transformation – it connects art and science. Strong emphasis on sound, related to the idea of visual music. The Style is soft but clean, focusing on black &#038; white.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-18.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=13395858"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=13395858" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">VIVA Channel Rebrand 2011</h3>
<p><img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-19.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18969983"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18969983" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Core by selfburning</h3>
<p>Experimental short film Design and animation Selfburning, Sound design Alexey Devyanin.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-20.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18948216"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18948216" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Surface Detail</h3>
<p>A myriad of details in an evolving fractal landscape.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-21.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18842873"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18842873" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">2011 Reel: Chris Kelly</h3>
<p>Motion designer <a href="http://juicetothemoon.com/">Chris Kelly</a> launches a new reel!<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-22.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=15414856"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=15414856" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">The Limousines &#8211; Very Busy People</h3>
<p>Music video for The Limousines – Very Busy People.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-23.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18665622"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18665622" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">T4 Idents by Double G Studios</h3>
<p>“Inspired by our love of robots, double g studios won a competitive pitch to direct and animate 20 energetic idents for Channel 4′s T4. The personality of each robot was enhanced through costume design, choreography and their relationship with the new 3d logos.”<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-24.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18625012"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18625012" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Make It Better</h3>
<p>Great mix of typography and motion graphics.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-25.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18669276"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18669276" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Bloc 2011</h3>
<p>David Terranova. Music: Krupp by Kritical Audio<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-26.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18508883"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18508883" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Existence by Pierre Grimm</h3>
<p>music by <a href="http://myspace.com/%E2%80%8Bniveau0">niveau zero in_sect</a>, shot by <a href="http://www.flylyf.com/existence-by-pierre-grimm/bphoton.com/%E2%80%8Bwp/%E2%80%8B">gkaster<br />
</a><img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-27.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18606900"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18606900" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">The Chase Film</h3>
<p>To build excitement around the 2nd Generation Intel® Core™ i5 processor, Intel is launching an action-adventure video titled “The Chase.” The spot demonstrates the performance capabilities of the new processors by creating an action-movie style chase sequence that takes place through a wide variety of program windows on a computer desktop.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-28.jpg" alt="" /><br />
<a href="http://bootstrap.pk/inspiration/random-inspiration-01-creative-ads-reels/"><img src="http://img.youtube.com/vi/ZM0ptMqNhso/default.jpg" width="130" height="97" border=0></a></p>
<h3 class="blueheading">Entering the Stronghold by Matthias Muller</h3>
<p>A stunning audio visual animation by Matthias Müller for the title song by Denny Schneidemesser!<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-29.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=18253976"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=18253976" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Modern Times &#8211; Points to Future Times</h3>
<p>Made with no money, just a little time and a lot of passion. – Amazing!<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-30.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17631561"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=17631561" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Kurz Und Schon Opener</h3>
<p>Opening sequence for the shortfilm competition “kurzundschön” (Short &#038; Nice) &#8211; <a href="http://www.feedmee.com/">Website</a><br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-31.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=16700057"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=16700057" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">BMX Super Slow-Mo</h3>
<p>Second and final slow motion test shot with a canon 7D and Edited with Twixtor in After Effects.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-32.jpg" alt="" /><br />
<object width="550" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17439665"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=17439665" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="550" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Meet Buck</h3>
<p>Buck is an ordinary guy. Well…if you except the “deer head” thing. And today, Buck is gonna spend this cool Sunday afternoon with his girlfriend who’s so happy to see him (she’s pretty much always happy). But when Buck find out that her father is not the sympathic and tolerant guy he excpected, the Sunday afternoon turns really bad.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-33.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17535548"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=17535548" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Cat Footwear by Paul Clements</h3>
<p>Director / Compositor : Paul Clements Created for Cat / Fold7<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-34.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17337026"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=17337026" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Beta Excellent</h3>
<p>Cool short intro for Beta Excellent University program, design &#038; direction by Soulbase.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-35.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=16997356"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=16997356" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Showreel 2010 by AixSponza</h3>
<p>Showreel by AixSponza, a Studio from Germany.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-36.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=16663312"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=16663312" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">REEL: Upper First 2010</h3>
<p>The new reel from Upper First is out, and its dope!<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-37.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=17073918"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=17073918" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object></p>
<h3 class="blueheading">Refraction by Jesse Zanzinger</h3>
<p>What do you get when you mix Oil and water? Refraction.<br />
<img src="http://bootstrap.pk/media/2011/06/random-inspiration-01-creative-ads-reels-38.jpg" alt="" /><br />
<object width="600" height="361"><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=16980912"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=16980912" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="600" height="361" flashvars=""></embed></object>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Frandom-inspiration-01-creative-ads-reels%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Frandom-inspiration-01-creative-ads-reels%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/inspiration/random-inspiration-01-creative-ads-reels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showcase: Amazing HTML5 Websites</title>
		<link>http://bootstrap.pk/inspiration/showcase-amazing-html5-websites-1/</link>
		<comments>http://bootstrap.pk/inspiration/showcase-amazing-html5-websites-1/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 02:45:06 +0000</pubDate>
		<dc:creator>LabibJ</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Webdesign]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2725</guid>
		<description><![CDATA[The idea of latest trends and support of those trends and technologies have finally settled down. HTML5 is growing massively around the industry nowadays and there are more and more creative ideas being delivered on the latest standard. As it&#8217;s no more a surprise what new elements have been introduced in HTML5. Let&#8217;s go ahead [...]]]></description>
			<content:encoded><![CDATA[<p>The idea of latest trends and support of those trends and technologies have finally settled down.<br />
HTML5 is growing massively around the industry nowadays and there are more and more creative ideas being delivered on the latest standard. </p>
<p>As it&#8217;s no more a surprise what new elements have been introduced in HTML5.<br />
Let&#8217;s go ahead and check out these 22 Amazing HTML5 Websites. The first of the showcase series.</p>
<h3 class="blueheading">Moods of Norway</h3>
<p><a href="http://www.moodsofnorway.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-01.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Mozilla Firefox Mark Up</h3>
<p><a href="https://markup.mozilla.org/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-02.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">There Studio</h3>
<p><a href="http://therestudio.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-03.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Ox Design</h3>
<p><a href="http://www.oxdesign.fr/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-04.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">The Planetarium</h3>
<p><a href="https://mozillademos.org/demos/planetarium/demo.html"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-05.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Ryan Delaney</h3>
<p><a href="http://www.ryandelaney.co.nz/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-06.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Kiran Owal</h3>
<p><a href="http://www.kiranowal.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-07.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Arcade Fire – The Wilderness Downtown</h3>
<p><a href="http://www.thewildernessdowntown.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-08.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Novembro</h3>
<p><a href="http://novembro.net/es"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-09.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">The Squad</h3>
<p><a href="http://www.thesquad.com.au/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-10.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Ben the Bodyguard</h3>
<p><a href="http://benthebodyguard.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-11.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Nike Better World</h3>
<p><a href="http://www.nikebetterworld.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-12.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">S5 Style</h3>
<p><a href="http://www.s5-style.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-113.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">This Shell</h3>
<p><a href="http://www.thisshell.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-14.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Johnny Broccolii</h3>
<p><a href="http://www.johnnybroccolii.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-15.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Pixelcriativo</h3>
<p><a href="http://www.pixelcriativo.com.br/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-16.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Dropr</h3>
<p><a href="http://dropr.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-17.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">John Kavanagh</h3>
<p><a href="http://johnkavanagh.co.uk/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-18.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Marco Barbosa</h3>
<p><a href="http://marcobarbosa.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-19.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Edgar Leijs</h3>
<p><a href="http://www.edgarleijs.nl/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-20.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Rob Edwards</h3>
<p><a href="http://robedwards.org/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-21.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Emmanuel Pelletier</h3>
<p><a href="http://emmanuelpelletier.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-22.jpg" alt="Showcase: Amazing HTML5 Websites #1" /></a></p>
<h3 class="blueheading">Klowdz</h3>
<p><a href="http://emmanuelpelletier.com/"><img src="http://bootstrap.pk/media/2011/06/showcase-amazing-html5-websites-1-23.png" alt="Showcase: Amazing HTML5 Websites #1" /></a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Fshowcase-amazing-html5-websites-1%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Fshowcase-amazing-html5-websites-1%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/inspiration/showcase-amazing-html5-websites-1/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Showcase : E-mail Newsletters #1</title>
		<link>http://bootstrap.pk/inspiration/showcase-e-mail-newsletters-1/</link>
		<comments>http://bootstrap.pk/inspiration/showcase-e-mail-newsletters-1/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 09:59:47 +0000</pubDate>
		<dc:creator>LabibJ</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[Newsletter]]></category>

		<guid isPermaLink="false">http://bootstrap.pk/?p=2685</guid>
		<description><![CDATA[A good campaign always requires a good set of marketing materials. And where would we be without E-mail Newsletters. A constant way to keep your subscribers informed of all the latest happenings, specials that you or your company is offering. For inspiration, here are is the first post of E-mail Newsletters Showcase Move Your Frame [...]]]></description>
			<content:encoded><![CDATA[<p>A good campaign always requires a good set of marketing materials.<br />
And where would we be without E-mail Newsletters.</p>
<p>A constant way to keep your subscribers informed of all the latest happenings, specials that you or your company is offering.<br />
For inspiration, here are is the first post of E-mail Newsletters Showcase</p>
<h3 class="blueheading">Move Your Frame</h3>
<p><a href="http://email.imperodesign.com/T/ViewEmail/r/403374C47745768F"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-01.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Impress Design</h3>
<p><a href="http://impress-design.com/email/bigFishEmail.html"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-02.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">U Creative</h3>
<p><a href="http://archive.constantcontact.com/fs057/1102377344604/archive/1104113458625.html"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-03.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Stonefest 2010</h3>
<p><a href="http://gallery.campaignmonitor.com/ViewEmail/y/91CEE57CAD8BBB29/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-04.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Threadless</h3>
<p><a href="http://view.email.threadless.com/?j=fe6515747167057c761d&#038;m=feeb1c78776d0d&#038;ls=fdf31776756301747d147675&#038;l=fec51072756c017a&#038;s=fe2413737c6c077e751274&#038;jb=ffcf14&#038;ju=fe2c15777366067c731076&#038;utm_medium=ExactTarget&#038;utm_campaign=January-31-2011_013111+-+Monday&#038;utm_source=013111+-+Monday&#038;r=0"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-05.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Lomography</h3>
<p><a href="http://thelomographer.com/2011/nl_valentines_pink_cameras/?utm_source=MailingList&#038;utm_medium=email&#038;utm_campaign=nl_valentines_pink_cameras"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-06.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Beauty Boxes</h3>
<p><a href="http://beautyboxes.createsend1.com/t/ViewEmail/y/2151611DD56E6DE0"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-07.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Blood UK</h3>
<p><a href="http://www.unpickled.co.uk/emails/give_blood.html"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-08.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Sigma Coaching</h3>
<p><a href="http://email.wp2design.com/t/ViewEmail/r/F5D76F73F488D830"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-09.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Wild Thyme</h3>
<p><a href="http://gallery.campaignmonitor.com/ViewEmail/r/3532F68E10E382FC/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-10.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Sheen Media</h3>
<p><a href="http://gallery.campaignmonitor.com/ViewEmail/r/2E49268AD0179604/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-11.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">MPad</h3>
<p><a href="http://client.mail-away.co.uk/t/ViewEmail/r/6C312B0E94E38444"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-12.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Joseph Mark</h3>
<p><a href="http://gallery.createsend.com/t/ViewEmail/y/3656B3FA5FEF1799/C67FD2F38AC4859C"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-13.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">UGMonk</h3>
<p><a href="http://us1.campaign-archive2.com/?u=23f620a44d8cd8e6fc0e5e698&#038;id=9f13a35ec2&#038;e=[UNIQID]"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-14.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Launch List</h3>
<p><a href="http://gallery.campaignmonitor.com/ViewEmail/r/314355250E991083/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-15.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Big Cartel</h3>
<p><a href="http://indielabs.cmail4.com/T/ViewEmail/y/196886B682AB2888/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-16.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">DesignEthos</h3>
<p><a href="http://designethos.createsend1.com/t/ViewEmail/r/0EA85C4682317221"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-17.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">West Elm</h3>
<p><a href="https://enews.westelm.com/servlet/website/ResponseForm?PLEVTUU-TU-WU_3.26_yyMNkgpmNkLEUZCVV-KUWZFLtHpspNtDJht"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-18.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Catch Digital</h3>
<p><a href="http://gallery.campaignmonitor.com/ViewEmail/y/07683DDBBD8DB74F/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-19.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Dublin Web Summit</h3>
<p><a href="http://dublinwebsummit.createsend3.com/t/ViewEmail/r/577EEF8CD3BC691A/"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-20.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Gloop Creative</h3>
<p><a href="http://gloopcreative.createsend1.com/t/ViewEmail/r/53F1411B452624DA"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-21.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Struck Axiom</h3>
<p><a href="http://www.struckaxiom.com/newsletter"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-22.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Icon PR</h3>
<p><a href="http://iconinc.createsend1.com/t/ViewEmail/r/C646AF32C7185BAC"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-23.png" alt="Showcase : E-mail Newsletters #1" /></a></p>
<h3 class="blueheading">Wain Wrights Yard</h3>
<p><a href="http://wainwrightsyard.createsend1.com/t/ViewEmail/r/0630390E4194BF0B"><img src="http://bootstrap.pk/media/2011/06/showcase-email-newsletters-1-24.png" alt="Showcase : E-mail Newsletters #1" /></a>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;margin-top:-80px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Fshowcase-e-mail-newsletters-1%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fbootstrap.pk%2Finspiration%2Fshowcase-e-mail-newsletters-1%2F&amp;source=bsfreeplay&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
]]></content:encoded>
			<wfw:commentRss>http://bootstrap.pk/inspiration/showcase-e-mail-newsletters-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

