Pages

Showing posts with label blogger. Show all posts
Showing posts with label blogger. Show all posts

Free Islamic Seo Friendly Blogger Template

Free Islamic Seo Friendly Blogger Template : There are thousands of designs on the web but Al- Islamic Template is best professional and SEO Optimized blogger Template which will help you to make your blog looking awesome in design and it also helps to drive organic traffic from search engines which is the need of every blogger. Today, I will not take your too much time in discussing, so Click on Download button and Get this Beautiful Blogger template  and See Results.

Al-Islamic Blogger Template


DOWNLOAD




Read more »

Blogger XML Operator and Syntax Updates 2015

Blogger Logo

Recently Blogger has released several new operators for the syntax of XML them. This new syntax allows us to be able to write code templates that better, more logical and more efficient. In addition to reducing the size of the file is XML, the new syntax also allows developers to be able to find new potentials in manipulating the template code Bloggers who used mostly only we can do with JavaScript. Here is a summary ...

And

Before

<b:if cond=data:blog.searchQuery>
<b:if cond=data:numPosts &gt; 10>
The search results by the number of posts more than 10 ...
</b:if>
</b:if>

After

<b:if cond=data:blog.searchQuery and data:numPosts &gt; 10>
The search results by the number of posts more than 10 ...
</b:if>
<b:if cond=data:blog.searchQuery &amp;&amp; data:numPosts &gt; 10>
The search results by the number of posts more than 10 ...
</b:if>

Or

Before

<b:if cond=data:blog.pageType == &quot;index&quot;>
Pass the test ...
</b:if>
<b:if cond=data:blog.pageType == &quot;item&quot;>
Pass the test ...
</b:if>

After

<b:if cond=data:blog.pageType == &quot;index&quot; or data:blog.pageType == &quot;item&quot;>
Pass the test ...
</b:if>
<b:if cond=data:blog.pageType == &quot;index&quot; || data:blog.pageType == &quot;item&quot;>
Pass the test ...
</b:if>

Not

Before

<b:if cond=data:comment.isDeleted>
<b:else/>
Comments are not erased here ...
</b:if>
<b:if cond=data:comment.isDeleted == &quot;false&quot;>
Comments are not erased here ...
</b:if>

After

<b:if cond=!data:comment.isDeleted>
Comments are not erased here ...
</b:if>
<b:if cond=not data:comment.isDeleted>
Comments are not erased here ...
</b:if>
Which can not be:
<!-- TEMPLATE ERROR: not term cannot be used as operator except when preceding in or contains -->
<b:if cond=data:comment.isDeleted not &quot;false&quot;>
Comments are not erased here ...
</b:if>
<!-- TEMPLATE ERROR: Extra characters at end of string: buf=[!] remainder=["false"] -->
<b:if cond=data:comment.isDeleted ! &quot;false&quot;>
Comments are not erased here ...
</b:if>
Which can be:
<b:if cond=not data:comment.isDeleted == &quot;false&quot;>
Comments are not erased here ...
</b:if>
<b:if cond=!data:comment.isDeleted == &quot;false&quot;>
Comments are not erased here ...
</b:if>

Ternary Selector

Before

&lt;html class=&#39;<b:if cond=data:blog.pageType == &quot;item&quot;>
page-item
<b:else/>
page-non-item
</b:if>&#39;&gt;

&lt;/html&gt;

After

<html expr_class=data.blog.pageType == &quot;item&quot; ? &quot;page-item&quot; : &quot;page-non-item&quot;>

</html>
<html expr_class=&quot;page-&quot; + (data.blog.pageType == &quot;item&quot; ? &quot;&quot; : &quot;non-&quot;) + &quot;item&quot;>

</html>

Membership

Almost the same as the operator or, just that all references must be the same comparison, values ??are distinguished:

Before

<b:if cond=data:comment.author == &quot;Taufik Nurrohman&quot;>
Admin comment ...
</b:if>
<b:if cond=data:comment.author == &quot;Taufik&quot;>
Admin comment ...
</b:if>
<b:if cond=data:comment.author == &quot;Admin&quot;>
Admin comment ...
</b:if>

After

<b:if cond=data:comment.author in {&quot;Taufik Nurrohman&quot;,&quot;Taufik&quot;,&quot;Admin&quot;}>
Admin comment ...
</b:if>
<b:if cond=data:comment.author in [&quot;Taufik Nurrohman&quot;,&quot;Taufik&quot;,&quot;Admin&quot;]>
Admin comment ...
</b:if>
<b:if cond={&quot;Taufik Nurrohman&quot;,&quot;Taufik&quot;,&quot;Admin&quot;} contains data:comment.author>
Admin comment ...
</b:if>
<b:if cond=[&quot;Taufik Nurrohman&quot;,&quot;Taufik&quot;,&quot;Admin&quot;] contains data:comment.author>
Admin comment ...
</b:if>

Else If

Before

<b:if cond=data:blog.pageType == &quot;item&quot;>
<data:post.body/>
<b:else/>
<b:if cond=data:blog.pageType == &quot;static_page&quot;>
<data:post.body/>
<b:else/>
<data:post.snippet/>
</b:if>
</b:if>

After

<b:if cond=data:blog.pageType == "item">
<data:post.body/>
<b:elseif cond=data:blog.pageType == &quot;static_page&quot;>
<data:post.body/>
<b:else/>
<data:post.snippet/>
</b:if>
or…
<b:if cond=data:blog.pageType in {&quot;item&quot;,&quot;static_page&quot;}>
<data:post.body/>
<b:else/>
<data:post.snippet/>
</b:if>

Reference:

Widget Tags for Layouts
Expressions in Layouts Tags
Adding New Expressions to Blogger Templates


Read more »

Conditional Tags for your blogger to make more responsive

Conditional Tags for your blogger to make more responsive

There are a few tricks to hide elements of both the blog on the home page / homepage, posts, static pages or by adding a conditional tag code in each element you want to hide.

Example
<b:if cond=data:blog.pageType != "static_page">
..... The contents of the content to be wrapped conditional tags (Content will be hidden in the static pages) .....
</b:if>

Not only hides an element but it could be to display only certain elements in the page that you specify.

Example
<b:if cond=data:blog.url == data:blog.homepageUrl>
..... The contents of the content to be wrapped in the conditional tag (content will only appear on the home page) .....
</b:if>
for more details please refer to some function conditional tag for widget below: 


1. Widget displays only on the home page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.url == data:blog.homepageUrl>
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>

2. View the Widgets only on the post page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.pageType == "item">
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>

3. View the Widgets only on certain page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.url == "Your URL">
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>
Change "Your URL" to your page url.

4. Hiding the Widgets only on certain page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.url != "Your URL">
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>
Change "Your URL" to your page url.

5. Display Widgets only on a static page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.pageType == "static_page">
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>

6. Hide Widgets on a static page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.pageType != "static_page">
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>

7. Widgets display only on the archive page:


<b:widget id=HTML1 locked=false title=Recent Posts type=HTML>
<b:includable id=main>
<b:if cond=data:blog.pageType == "archive">
<!-- only display title if its non-empty -->
<b:if cond=data:title != "">
<h2 class=title><data:title/></h2>
</b:if>
<div class=widget-content>
<data:content/>
</div>
<b:include name=quickedit/>
</b:if>
</b:includable>
</b:widget>

Once you add a tag conditional upon, save the template and see the results. Not limited to the widget, with conditional tags you can wrap other elements such as scripts, CSS, or HTML template for reasons accelerate blog by reducing the script contained in a page or other privacy reasons. May be useful.


Read more »

Meta Tags for web and blogger

Meta Tags for web and blogger


META TAGS is the key of success for web builders, right META TAGS and right place for META TAGS is the back-bone of blogger for optimizing a web which can make your blog easily index-able and findable from search engines.

Basic META TAGS for HTML

<meta charset=UTF-8>
<meta name=keywords content=your, tags>
<meta name=description content=150 words>
<meta name=subject content=your websites subject>
<meta name=copyright content=company name>
<meta name=language content=ES>
<meta name=robots content=index,follow>
<meta name=revised content=Sunday, July 18th, 2010, 5:15 pm>
<meta name=abstract content=>
<meta name=topic content=>
<meta name=summary content=>
<meta name=Classification content=Business>
<meta name=author content=name, email@hotmail.com>
<meta name=designer content=>
<meta name=reply-to content=email@hotmail.com>
<meta name=owner content=>
<meta name=url content=http://www.websiteaddrress.com>
<meta name=identifier-URL content=http://www.websiteaddress.com>
<meta name=directory content=submission>
<meta name=pagename content=jQuery Tools, Tutorials and Resources - OReilly Media>
<meta name=category content=>
<meta name=coverage content=Worldwide>
<meta name=distribution content=Global>
<meta name=rating content=General>
<meta name=revisit-after content=7 days>
<meta name=subtitle content=This is my subtitle>
<meta name=target content=all>
<meta name=HandheldFriendly content=True>
<meta name=MobileOptimized content=320>
<meta name=date content=Sep. 27, 2010>
<meta name=search_date content=2010-09-27>
<meta name=DC.title content=Unstoppable Robot Ninja>
<meta name=ResourceLoaderDynamicStyles content=>
<meta name=medium content=blog>
<meta name=syndication-source content=https://mashable.com/2008/12/24/free-brand-monitoring-tools/>
<meta name=original-source content=https://mashable.com/2008/12/24/free-brand-monitoring-tools/>
<meta name=verify-v1 content=dV1r/ZJJdDEI++fKJ6iDEl6o+TMNtSu0kv18ONeqM0I=>
<meta name=y_key content=1e39c508e0d87750>
<meta name=pageKey content=guest-home>
<meta itemprop=name content=jQTouch>
<meta http-equiv=Expires content=0>
<meta http-equiv=Pragma content=no-cache>
<meta http-equiv=Cache-Control content=no-cache>
<meta http-equiv=imagetoolbar content=no>
<meta http-equiv=x-dns-prefetch-control content=off>

Open Graph META TAGS


<meta name=og:title content=The Rock>
<meta name=og:type content=movie>
<meta name=og:url content=http://www.imdb.com/title/tt0117500/>
<meta name=og:image content=http://ia.media-imdb.com/rock.jpg>
<meta name=og:site_name content=IMDb>
<meta name=og:description content=A group of U.S. Marines, under command of...>

<meta name=fb:page_id content=43929265776>
<meta name=application-name content=foursquare>
<meta name=og:email content=me@example.com>
<meta name=og:phone_number content=650-123-4567>
<meta name=og:fax_number content=+1-415-123-4567>

<meta name=og:latitude content=37.416343>
<meta name=og:longitude content=-122.153013>
<meta name=og:street-address content=1601 S California Ave>
<meta name=og:locality content=Palo Alto>
<meta name=og:region content=CA>
<meta name=og:postal-code content=94304>
<meta name=og:country-name content=USA>

<meta property=fb:admins content=987654321>
<meta property=og:type content=game.achievement>
<meta property=og:points content=POINTS_FOR_ACHIEVEMENT>

<meta property=og:video content=http://example.com/awesome.swf>
<meta property=og:video:height content=640>
<meta property=og:video:width content=385>
<meta property=og:video:type content=application/x-shockwave-flash>
<meta property=og:video content=http://example.com/html5.mp4>
<meta property=og:video:type content=video/mp4>
<meta property=og:video content=http://example.com/fallback.vid>
<meta property=og:video:type content=text/html>

<meta property=og:audio content=http://example.com/amazing.mp3>
<meta property=og:audio:title content=Amazing Song>
<meta property=og:audio:artist content=Amazing Band>
<meta property=og:audio:album content=Amazing Album>
<meta property=og:audio:type content=application/mp3>

Custom META TAGS

Use custom meta tags to store data that you need in Javascript, instead of hard-coding that data into your Javascript. I store my Google Analytics code in meta tags. Heres some examples:

<meta name=google-analytics content=1-AHFKALJ>
<meta name=disqus content=abcdefg>
<meta name=uservoice content=asdfasdf>
<meta name=mixpanel content=asdfasdf>
<meta name=alexaVerifyID content=asdfasdf>

Company/Services META TAGS

Claim ID

<meta name=microid content=mailto+http:sha1:e6058ed7fca4a1921cq91d7f1f3b8736cd3cc1g7>
<meta name=readability-verification content=E7aEHvVQpWc8VHDqKvaB2Z58hek2EAv2HuLuegv7>
<meta name=google-site-verification content=4SMIedO1X4IkYrYuhEC2VuovdQM36Xxb0btUjElqQyg>
<meta name=ICBM content=40.746990, -73.980537>
<meta name=generator content=WordPress 3.3.1>
<meta name=norton-safeweb-site-verification content=tz8iotmk-pkhui406y41y5bfmfxdwmaa4a-yc0hm6r0fga7s6j0j27qmgqkmc7oovihzghbzhbdjk-uiyrz438nxsjdbj3fggwgl8oq2nf4ko8gi7j4z7t78kegbidl4>

Apple META TAGS

<meta name="apple-mobile-web-app-title" content="My App"> <!-- New in iOS6 -->
<meta name=apple-mobile-web-app-capable content=yes>
<meta name=apple-touch-fullscreen content=yes>
<meta name=apple-mobile-web-app-status-bar-style content=black>
<meta name=format-detection content=telephone=no>
<meta name=viewport content=width=device-width; content=width = 320; initial-scale=1.0; maximum-scale=1.0; user-scalable=yes; target-densitydpi=160dpi>

<link href=/apple-touch-icon.png rel=apple-touch-icon type=image/png>
<link href=touch-icon-ipad.png rel=apple-touch-icon sizes=72x72>
<link href=touch-icon-iphone4.png rel=apple-touch-icon sizes=114x114>
<link href=/startup.png rel=apple-touch-startup-image>

<link href=http://github.com/images/touch-icon-iphone4.png sizes=114x114 rel=apple-touch-icon-precomposed>
<link href=http://github.com/images/touch-icon-ipad.png sizes=72x72 rel=apple-touch-icon-precomposed>
<link href=http://github.com/images/apple-touch-icon-57x57.png sizes=57x57 rel=apple-touch-icon-precomposed>

Internet Explorer META TAGS

<meta http-equiv=Page-Enter content=RevealTrans(Duration=2.0,Transition=2)>
<meta http-equiv=Page-Exit content=RevealTrans(Duration=3.0,Transition=12)>
<meta name=mssmarttagspreventparsing content=true>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/>
<meta name=msapplication-starturl content=http://blog.reybango.com/about/>
<meta name=msapplication-window content=width=800;height=600>
<meta name=msapplication-navbutton-color content=red>
<meta name=application-name content=Rey Bango Front-end Developer>
<meta name=msapplication-tooltip content=Launch Rey Bangos Blog>
<meta name=msapplication-task content=name=About;action-uri=/about/;icon-uri=/images/about.ico>
<meta name=msapplication-task content=name=The Big List;action-uri=/the-big-list-of-javascript-css-and-html-development-tools-libraries-projects-and-books/;icon-uri=/images/list_links.ico>
<meta name=msapplication-task content=name=jQuery Posts;action-uri=/category/jquery/;icon-uri=/images/jquery.ico>
<meta name=msapplication-task content=name=Start Developing;action-uri=/category/javascript/;icon-uri=/images/script.ico>
<meta name=msvalidate.01 content=6E3AD52DC176461A3C81DD6E98003BC9>
<meta http-equiv=cleartype content=on>

TweetMeme META TAG

<meta name=tweetmeme-title content=Retweet Button Explained>

Blog Catalog META TAG

<meta name=blogcatalog>

Rails META TAGS

<meta name=csrf-param content=authenticity_token>
<meta name=csrf-token content=/bZVwvomkAnwAI1Qd37lFeewvpOIiackk9121fFwWwc=>

HTML Links META TAGS

<link rel=alternate type=application/rss+xml title=RSS href=http://feeds.feedburner.com/martini>
<link rel=alternate type=application/atom+xml title=Atom 0.3 href=https://example.com/feed.atom>
<link rel=shortcut icon type=image/ico href=/favicon.ico>
<link rel=fluid-icon type=image/png href=/fluid-icon.png>
<link rel=me type=text/html href=http://google.com/profiles/thenextweb>
<link rel=shortlink href=http://blog.unto.net/?p=353>
<link rel=archives title=May 2003 href=http://blog.unto.net/2003/05/>
<link rel=index title=DeWitt Clinton href=http://blog.unto.net/>
<link rel=start title=Pattern Recognition 1 href=http://blog.unto.net/photos/pattern_recognition_1_about/>
<link rel=bookmarktitle=Styleguide href=http://paulrobertlloyd.com/about/styleguide/>
<link rel=search href=/search.xml type=application/opensearchdescription+xml title=Viatropos>

<link rel=self type=application/atom+xml href=http://www.syfyportal.com/atomFeed.php?page=3>
<link rel=first href=http://www.syfyportal.com/atomFeed.php>
<link rel=next href=http://www.syfyportal.com/atomFeed.php?page=4>
<link rel=previous href=http://www.syfyportal.com/atomFeed.php?page=2>
<link rel=last href=http://www.syfyportal.com/atomFeed.php?page=147>

<link rel=canonical href=http://smallbiztrends.com/2010/06/9-things-to-do-before-entering-social-media.html>
<link rel=EditURI type=application/rsd+xml title=RSD href=http://smallbiztrends.com/xmlrpc.php?rsd>
<link rel=pingback href=http://smallbiztrends.com/xmlrpc.php>
<link rel=stylesheet media=only screen and (max-device-width: 480px) href=http://wordpress.org/style/iphone.css type=text/css>
<link rel=wlwmanifest href=http://www.example.com/wp-includes/wlwmanifest.xml type=application/wlwmanifest+xml>


Read more »

Alexis Responsive Blogger Template EP Free Templates

Alexis is a free blogger template adapted from WordPress with 2 columns, responsive design, right sidebar, minimalist, posts thumbnails, related posts support, well designed threaded comments, girly looking, simple look and vintage style.

Alexis Responsive Blogger Template (EP Free Templates)

Responsive & Fast template for blogs about any general topic, to write a diary or fashion.

Download Alexis for free from EP:

DEMO & Download


Read more »

Ivision Responsive Blogger Template Free by EP

Invision Responsive Blogger Template
As a routine work I search lots of free stuff for my friends, now Ill share the back of free templates. Invision is the first free template from EP Design in the early 2016 s . Appearance of this template was adopted from New Line premium template.
Invision Responsive Blogger Template.png


The following features in the template Invision this
Features Availability
Responsive True Check
Google Testing Tool Validator True Check
SEO Friendly True Check
Mobile Friendly True Check
Dynamic Heading True
Adsense Ready True
Valid Schema.org True
High CTR True
Personal Blog True
Disqus Comment System True
2 Column True
Auto Read More with Thumbnail True
Responsive Ad Slot True
Breadcrumbs True
About Me Widget True
Related Posts with Thumb True
Search Box True
Social Share Button True
Responsive Dropdown Menu True
News Ticker True
Smooth Back to Top True
Custom Subscribe Box Widget True
Custom Pop up Contact Form True
Shortcodes True
Unlimited Page Numbered True

Well for demos and download links , please click on the button below

DEMO & Download



Read more »

CSS Subscription Gadget for Blogger


CSS Subscription Gadget for Blogger

If you want to make your blog most elegant and professional use STYLISH CSS Coddings. I have submitted here a widget for subscription box with social sharing designed in CSS.
Critical Component of a WebsiteCSS Cheat Sheet


For using this script follow these instructions:
  1. Go to blogger
  2. Select layout
  3. Now select Add Gadget from layouts where you want to appear this subscription box.
  4. Select "HTML/Javascript"
  5. Copy the following codes
  6. Replace your own tags with RED color
  7. And finally save your gadget.
<style type="text/css">#subscribe-wrapper { background: urlundefinedhttp://softglad.at.ua/images/border.png) repeat scroll 0 0 transparent; padding: 3px; } #subscribe-box { background: urlundefinedhttp://softglad.at.ua/images/bg.png) repeat scroll 0 0 #F7F7F7; border-radius: 15px; padding:5px; overflow: hidden; } a.linkopacity img { filter_alphaundefinedopacity=75); -moz-opacity: 0.5; opacity: 0.5; -khtml-opacity: 0.5; -webkit-transition:All .5s ease; -moz-transition:All .5s ease; -ms-transition:All .5s ease; -o-transition:All .5s ease; transition:All .5s ease; padding: 3px; border: 0px; } a.linkopacity:hover img { filter_alphaundefinedopacity=100); -moz-opacity: 1; opacity: 1; -khtml-opacity: 1; -moz-box-shadow: 0px 0px 10px 2px rgbaundefined0, 0, 0, 0.44); -webkit-box-shadow: 0px 0px 10px 2px rgbaundefined0, 0, 0, 0.44); box-shadow: 0px 0px 10px 2px rgbaundefined0, 0, 0, 0.44); } #subscribe-box:hover table { top: 0; } #subscribe-box h1{ margin-top: 5px; color: black; font-family: arial; font-size: 15px; margin-bottom: 5px; line-height: 14px; font-weight: bold; text-align: center; letter-spacing: -1px; } #subscribe-box table { position: relative; top: 40px; -webkit-transition:All .5s ease; -moz-transition:All .5s ease; -ms-transition:All .5s ease; -o-transition:All .5s ease; transition:All .5s ease; margin-bottom: 0px; } #subscribe-box td { padding: 2px; } #subscribe-box input{ background: white; border: medium none; font-size: 12px; padding: 10px; width: 150px; color: #666; font-family: arial; margin-bottom: 3px; width: 55%; } #subscribe-box input:focus{outline:none;} #subscribe-box .submit{ background: #E73827; color: #fff; cursor: pointer; font-weight: bold; text-shadow: 0 1px 2px black; width: 90px; font-family: arial; margin-left: -3px; font-size: 14px; }</style><div id=subscribe-wrapper> <div id=subscribe-box> <h1>Subscribe to Get Latest Songs, Software, Mobile Apps &amp; Tips via email</h1> <form action=http://feedburner.google.com/fb/a/mailverify method=post onsubmit=window.openundefined&apos;http://feedburner.google.com/fb/a/mailverify?uri=entertainmentplateform&apos;, &apos;popupwindow&apos;, &apos;scrollbars=yes,width=550,height=520&apos;);return true target=popupwindow> <center> <input name=email onblur=if undefinedthis.value == &quot;&quot;) {this.value = &quot;enter your email address...&quot;;} onfocus=if undefinedthis.value == &quot;enter your email address...&quot;) {this.value = &quot;&quot;} size=20 type=text value=enter your email address.../> <input name=uri type=hidden value=entertainmentplateform/> <input name=loc type=hidden value=en_us/> <input class=submit type=submit value=subscribe/></center></form> <center> <table> <tbody><tr><td><a class=linkopacity href=http://entertainment-plateform.blogspot.com/feeds/posts/default?alt=rss target=_blank><img src=http://1.bp.blogspot.com/-g4TxrK9fWDY/UbTIkKWmeaI/AAAAAAAADUc/OwGa_T5NR44/s320/rss.png/></a></td> <td> <a class=linkopacity href=http://www.facebook.com/entertainmentplateform target=_blank><img src=http://2.bp.blogspot.com/-qIsda29xTJ8/UbTIkOIoy9I/AAAAAAAADUg/chVLsbyGg-c/s320/facebook.png/></a> </td> <td> <a class=linkopacity href=http://twiiter.com/fazalullhaq target=_blank><img src=http://1.bp.blogspot.com/--080z8xWsz0/UbTIk54CQuI/AAAAAAAADUw/uTTqF4Uugiw/s320/twitter.png/></a> </td> <td> <a class=linkopacity href=https://plus.google.com/+Entertainment-plateformBlogspot target=_blank><img border=0 src=http://4.bp.blogspot.com/-UrTQlBd2ut4/UbTIkLW4h3I/AAAAAAAADUk/9hoDc7rUxV4/s320/Google.png/></a> </td> </tr></tbody></table> </center> </div></div> <a href=http://entertainment-plateform.blogspot.com title=Add CSS FeedBurner Subscription Box v3 to Blogger><span class=getfloat style=font-size: x-small;>Get This</span></a>
Preview

CSS Subscription Gadget for Blogger

 You have done! If you want to move your gadget drag it from layout and place where you want.



Read more »

Android Mag Free Responsive Blogger Template

Android Mag Free Responsive Blogger Template and best professional and SEO Optimized blogger theme which will help you to make your blog looking awesome in design and it also helps to drive organic traffic from search engines which is the need of every blogger. Today, I will not take your too much time in discussing, 
So, Click Following Download Button and Get this Awesome Theme.

Android Mag Free Responsive Blogger Template








Read more »