Showing posts with label Blogger. Show all posts
Showing posts with label Blogger. Show all posts

Sunday, September 20, 2015

How to Disable URL Redirection in Blogger? (Better Codes)


Blogger is a weblog-publishing service that permits multi-user blogs with time-stamped entries. It became developed by Pyra Labs, which changed into bought by Google in 2003. typically, the blogs are hosted by means of Google at a sub-domain of blogspot.com. A user can have as much as a hundred blogs in keeping with an account.


As the Google have started redirecting the blogger blogs to country specific domain, many of blogger users are going through issues because of negative affect on Google juice (Bookmarked hyperlinks, external hyperlinks of your blogs) and social stats (like tweet counts, Facebook stocks and Google +1’s).

The country specific re-route lets in google to have greater control on blogs management in distinct countries.
Available Solutions:

  • Use Custom Domains: The users who are using custom domain will not be affected, since their url structure will remain the same and it will not be redirected ( Refer this).
  • Adding ‘ncr’ slug to blog url: Adding a ‘ncr’ slug to your blog url stops the redirection and it shows the actual domain address.
For example opening http://abc.blogspot.com in India will open http://abc.blogspot.in,

However, if you open http://abc.blogspot.com/ncr in any country it will simply open the same url i.e. http://abc.blogspot.com



How to Disable URL Redirection in Blogger?

I recently found a code snippet to add ncr slug to your blogger url. Follow the below steps:

#1: Open Blogger dashboard and select template


#2: Click on ‘Edit HTML’ and then Proceed

#3: Add following code in between <head> tag:
<script type='text/javascript'>
// Disable URL Redirection in Blogger Codes
// Design Devta | http://onlinetrickpdf.Blogspot.Com/
var str=window.location.href.toString();if("-1"==str.indexOf(".com/")){var str1=str.substring(str.lastIndexOf(".blogspot."));if("-1"==str1.indexOf("/"))var str2=str1;else var str2=str1.substring(0,str1.indexOf("/")+1);window.location.href=window.location.href.toString().replace(str2,".blogspot.com/ncr/")}
</script>
#4: Click on Save Template and its done.

Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. This Post is written by Harman Singh Hira. There is no any source so Copying or using this post for your own site is not allowed. If anyone do so get ready for facing DMCA. Please, if you like this post then share on your social networking sites. Assuring you of our best service always.
Read more »

How to Redirect Mobile/Tablet Users to another Site?


The mobile Web refers to the use of browser-based Internet services from handheld mobile devices, such as smartphones or feature phones, through a mobile or other wireless network. Mobile Internet growth is the growth of the Internet when accessed via a mobile phone, laptop, etc. Mobile phone connections are increasing more rapidly than purchases of any other consumer product, according to Tomi Ahonen. Since this article was published there were a number of announcements stating that half the world now had mobile phones. The articles in 2007-2008 were slightly misleading because the real story at the time was that the number of mobile phone subscriptions had reached half the population of the world. In reality many people have more than one subscription. For example, in Hong Kong, Italy and Ukraine, the mobile phone penetration rate has passed 140%. By 2009 even the number of unique users of mobile phones had reached half the planet, when the ITU reported that the subscriber number was to reach 4.6 billion user which means 3.8 billion activated mobile phones in use, and 3.4 billion unique users of mobile phones. The Mobile Internet data connections are following the growth of mobile phone connections albeit at a lower rate. In 2009 Yankee Group reported that 29% of all mobile phone users globally were accessing browser-based internet content on their phones. According to the BBC, there were over 5 billion mobile phone users in the world in 2010.


So, it means mobile users are growing up day by day. A website receive lots of visitor daily and well-nigh half visitors are accessing from their mobile or tablet. Sites or Blogs those are not responsive yet, of course faced a lot of problem, and as well as user too. This represent a site as a nerd in a class of stylish students. Well, there are two solutions of this major problem. Primary is - make your site responsible to fit in each and every size. And, other one is - redirect your site to another site that is responsible. However, in my this tutorial, I will show you that, 'How to Redirect Mobile/Tablet Users to another Site?' easily with some simple JavaScript Codes.

Features:
  • Cookies Enabled
  • Hypertext Transfer Protocol Scheme
  • Redirection Parameter
  • Tablet Redirection
  • and many more...

How to Redirect Mobile/Tablet Users to another Site?

#1: Add below codes in between <head> tag.
<!-- Redirect mobile visitors by Design Devta-->
<!-- #### www.onlinetrickpdf.Blogspot.Com #### -->
<script type="text/javascript" src="//hsinghhira.github.io/onlinetrickpdf/Mobile_Redirect/redirection-mobile.js"></script>
<script type="text/javascript">
SA.redirection_mobile ({
 mobile_url: "onlinetrickpdf.blogspot.com",
 cookie_hours: "2",
});
</script>
<!-- #### www.onlinetrickpdf.Blogspot.Com #### -->
<!-- Redirect mobile visitors by Design Devta-->

#2: Customize above codes according to your needs.


#3: Done.

Configurations

  • mobile_prefix : prefix appended to the hostname. E.g. "m" to redirect to "m.domain.com". "m" is the default value if the property is not specified.
    mobile_url : mobile url to use for the redirection (without the protocol), such as "whatever.com"/example to redirect to "whatever.com/example". If "mobile_prefix" exists too, "mobile_prefix" is ignored. Empty string is the default value.
  • mobile_scheme : url scheme (http/https) of the mobile site domain, such as "https" to redirect to "https://m.domain.com". The protocol of the current page is the default value.
  • redirection_param : parameter to pass in the query string of the URL to avoid the redirection (the value must be equal to "false" to avoid redirection). Default value is "mobile_redirect". Eg: http://domain.com?mobile_redirect=false It is the name of the item in the sessionStorage (or cookie name) used to avoid mobile redirection.
  • cookie_hours : number of hours the cookie needs to exist after redirection to desktop site. "1" is the default value.
  • tablet_redirection : boolean value that enables/disables(default) the redirection for tablet such as iPad, Samsung Galaxy Tab, Kindle or Motorola Xoom. - Default:false. The value needs to be a string (so wrapped in double or single quotes). If 'tablet_host' parameter not specified, the user will be redirected to the same URL as for mobile devices.
  • tablet_host : hostname to use for the redirection in case user is using a tablet to access the site. Default value is ""
  • keep_path : boolean to determine if the destination url needs to keep the path from the original url. Default value is 'false'
  • keep_query : boolean to determine if the destination url needs to keep the querystring from the original url. Default value is 'false'
  • beforeredirection_callback : if specified, callback launched before the redirection happens. If a false value is returned from the callback the redirection doesn't happen.
  • append_referrer : boolean to determine if the document.referrer should be appended to the destination url. document.referrer will be URI encoded prior to appending. Default value is 'false'
  • append_referrer_key : if specified, the key used for the document.referrer. defaults to 'original_referrer'


Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. This Post is written by Harman Singh Hira. There is no any source so Copying or using this post for your own site is not allowed. If anyone do so get ready for facing DMCA. Please, if you like this post then share on your social networking sites. Assuring you of our best service always.
Read more »

Punjab Press v5.0 Blogger Template Free Download


Punjab Press Template is a well known Blogger Template used by more 10k Users. Template fit for all kind of Blogging Style. Beautiful Eye Catching Responsive Design Compatible with all Ads Sizes. Simple and Understandable Admin Layout Panel. You can change its Color from Orange to any through Template Designer. Template Supported RTL (Right to Left) Support for Urdu, Arabic, etc Languages Sites. Check more Features below:-


Features:
  1. Responsive
  2. Chat System
  3. Superb SEO Friendly
  4. Simple and Stylish Admin Layout Panel
  5. Unlimited Colors
  6. Ads Ready
  7. Widgets Ready
  8. Custom Styled Widgets
  9. Lightweight Read More
  10. JSON Search Result
  11. Sitemap and Archive Page
  12. Social Icons
  13. RTL Support
  14. Custom 404 Page
  15. Compatible with Major Browsers 
  16. Neat and Clean Documentation
  17. Forum Support for all
  18. Trusted by 10,000+ Users


Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. Please, if you like our this post then share on your social network. Assuring you of our best service always.
Read more »

Create a Chat Room in Seconds and Embed in Blogger/Site?

There are a dozen-odd ways to chat with people these days, from IM to Twitter direct messages to apps like Slack, Snapchat and GroupMe.

If you want to create your own with no more fuss than typing in a unique URL in your web browser, though, you can’t go wrong with hack.chat, a new, bare-bones, no-frills approach to private chat that looks like something out of the DOS era. And I mean that in a good way.

It’s dead simple to use (though you can also run your own server) and incredibly disposable. Perfect for those quick chats you need to make happen that you may not want on something like Slack, which keeps an archive of all the inappropriate comments you’ve ever written.


To create a disposable hack.chat, simply head to the website and add a ? and a string of text to the URL. For example, https://hack.chat/?design-devta will create a chat room named “random-channel.” Any text string will work, too, so feel free to get crazy with nonsense characters, too.

You can send the new URL to anyone you need to talk to privately and be chatting in less than 10 seconds. There are no channel lists kept anywhere, so random people won’t show up in your hack.chat (unless you use something guessable for your channel name).


Formatting is possible with LaTeX markup, too.

Create a Chat Room in Seconds and Embed in Blogger/Site?

Here are some channels hack.chat’s home page has for you to join and test out; just add the name to the url http://hack.chat/


Creator Andrew Belt, a student at the University of Tennessee, promises that no message history is kept on the hack.chat servers, so random channel names can be created for purely private discussions.

You can also use it in your website by using below codes but replace red highlighted text with your unique name and height with your choice.
<iframe src="https://hack.chat/?design-devta" width="100%" height="500" frameborder="0"></iframe>
Source: Cult of Mac

Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our 
Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. This Post is written by Harman Singh Hira. There is no any source so Copying or using this post for your own site is not allowed. If anyone do so get ready for facing DMCA. Please, if you like this post then share on your social networking sites. Assuring you of our best service always.
Read more »

Index your Post on Google in 3 Second [Trick]


Once you published a New Blog Post then you started waiting for Googlebot to crawl your new post to be indexed in Google. But it took many hours to index and sometimes days. This is also seen that if you have a new Blog and your traffic is not so much then Google do not index your less popular post. Now what to do in this kind of situations? Many other Bloggers give advise to submitting your Blog to Google Webmaster Tools for fast indexing but in reality, this is also not working for Less Traffic Blogs. 


But Now No-More waiting for Indexing. Here a Trick to Index your Post on Google within Seconds. I'm talking about Fetch as Google Tool in Webmaster Tools. Almost every Blogger has an account on Google Webmaster but we never saw it completely. Here I’m explaining about Fetch as Google tool, developed by Google Webmaster tools where you can submit your blog to crawl and indexed very fast. This is 100% working trick and safe. Many other sites posting many tricks to index fast through various ways but that's all tricks are illegal and against Google policies. Use this 100% safe trick.

So let's get Started

First if you do not have account on Google Webmaster Tools then Create new one and add your site to Webmaster tools. Then use below two steps:

Step 1:  Submit your Site's Sitemap.

#1: Go to Webmasters Dashboard and Click on your Site
#2: Then from the left side menu, Click on Crawl then Sitemaps.


#3: Click on Red "ADD/TEST SITEMAP" button.


#4: Enter sitemap.xml in Text field.


#5: Then Click Submit Sitemap.
#6: Refresh the Page. Done.


Step 2: Trick to Index Fast.

#1: Now, Click on Fetch as Google Option from Crawl.


#2: Enter your Post's URL but without Domain name, example below. Enter Red Text only.
http://onlinetrickpdf.blogspot.com/2015/03/how-to-download-android-apps-in-pc-in.html

#3: Then Click on Fetch Button.
#4: Your URL Fetch properly.
#5: Click on Submit to index Button.


#6: A popup will Appeared. Choose Crawl only site URL Option and Click Go Button.


#7: Done.


Now your Post successfully Index on Google. If you want to check it then go to Google and Search for "site:your-post-link" or click here for example.
Note: You can only Fetch 500 URL in a Month.
Image Courtesy:  Financial Gazette

Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. Please, if you like our this post then share on your social network. Assuring you of our best service always.
Read more »

1000 Free Domains for Blogger/Site

A domain name is an identification string that defines a realm of administrative autonomy, authority or control within the Internet. Domain names are formed by the rules and procedures of the Domain Name System (DNS). Any name registered in the DNS is a domain name. Domain names are used in various networking contexts and application-specific naming and addressing purposes. In general, a domain name represents an Internet Protocol (IP) resource, such as a personal computer used to access the Internet, a server computer hosting a web site, or the web site itself or any other service communicated via the Internet. In 2014, the number of active domains reached 271 million. Domain names are organized in subordinate levels (subdomains) of the DNS root domain, which is nameless. The first-level set of domain names are the top-level domains (TLDs), including the generic top-level domains (gTLDs), such as the prominent domains com, info, net, edu, and org, and the country code top-level domains (ccTLDs). Below these top-level domains in the DNS hierarchy are the second-level and third-level domain names that are typically open for reservation by end-users who wish to connect local area networks to the Internet, create other publicly accessible Internet resources or run web sites. The registration of these domain names is usually administered by domain name registrars who sell their services to the public.

A fully qualified domain name (FQDN) is a domain name that is completely specified in the hierarchy of the DNS, having no parts omitted.

Labels in the Domain Name System are case-insensitive, and may therefore be written in any desired capitalization method, but most commonly domain names are written in lowercase in technical contexts.



Why free Domain provided by free hosting service is not useful? 
Because:
  • The domain provide by free service is very long i.e. domain provide by blogger is wwwyourname.blogspot.com, etc. So, it’s very long.
  • It's shows that which free hosting platform we are using. 

These are the reasons. But here I gave hundreds of free Domains.

Features
  1. It's 100% Free and Simple
  2. Short Domains
  3. Instant Setup
  4. Easy and Free Registration
  5. Easy Domain Setup
  6. Nameserver Setup
  7. Advanced DNS Setup
  8. URL Forwarding

1000 Domain Names




Add Domain Names List to your Site
<script type="text/javascript">
var dd_height = "500px";
var dd_main='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';function _01O(data){var _0lllOI="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";var o1,o2,o3,h1,h2,h3,h4,bits,i=0,enc='';do{h1=_0lllOI.indexOf(data.charAt(i++));h2=_0lllOI.indexOf(data.charAt(i++));h3=_0lllOI.indexOf(data.charAt(i++));h4=_0lllOI.indexOf(data.charAt(i++));bits=h1<<18|h2<<12|h3<<6|h4;o1=bits>>16&0xff;o2=bits>>8&0xff;o3=bits&0xff;if(h3==64){enc+=String.fromCharCode(o1)}else if(h4==64){enc+=String.fromCharCode(o1,o2)}else{enc+=String.fromCharCode(o1,o2,o3)}}while(i<data.length);return enc} function _0ll(string){ var ret = '', i = 0; for ( i = string.length-1; i >= 0; i-- ){ ret += string.charAt(i);} return ret; }eval(_01O(_0ll(dd_main)));
</script>

Thank you for patronizing Design Dev. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as your expected from us or if you are facing any problem, kindly forward your feedbacks and comments directly to us by leave a Comment below or Contact us. And, get assured response from my side. Your feedbacks and suggestions are extremely valuable to us. Please, if you like this post then share on your social network. Assuring you of our best service always.
Read more »

Disable your Site for AdBlock Users


AdBlock is a content filtering and ad blocking pay what you want extension for the Google Chrome, Apple Safari, Mozilla Firefox, and Opera web browsers. AdBlock allows users to prevent page elements, such as (and mainly) advertisements, from being displayed. As of July 2014, AdBlock is the most popular Google Chrome extension, with over 40,000,000 users, and the most popular Safari extension. According to an article in The New York Times, the extension was created on December 8, 2009 (the day that support for extensions was added to Google Chrome). Safari support was added in June 2010.


AdBlock is not to be confused with Adblock Plus. The creator of AdBlock claims to have been inspired by the Adblock Plus extension for Firefox, but otherwise the two efforts are unrelated (as well as to the original Adblock from which Adblock Plus was forked). 

Source: Wikipedia 

Many people including me are against AdBlock. Reason you know already; because its disable ads. People like me and other bloggers only way to earn is "Ad". We spent lot of time for a single post so Ads help us to earn some money. So here are some codes for AdBlock Haters.

Below is Styling Codes so add in between <head> tags.
<style scoped='' type='text/css'>
#h237 {
position:fixed !important;
position:absolute;
top:0;
top:expression((t=document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop)+"px");
left:0;
width:102%;
height:102%;
background-color:#f9f9f9;
opacity:.97;
display:block;
padding:10% 0
}
#h237 * {
text-align:center;
margin:0 auto;
display:block;
filter:none;
font:bold 14px Verdana,Arial,sans-serif;
text-decoration:none
}
#h237 ~ * {
display:none
}
</style>


Here is the main Codes. Add below codes before </body> tag.
<div id="h237"><span>Please Enable JavaScript!<a href="http://www.enable-javascript.com/">[Enable JavaScript]</a></span></div>

<script>
// AdBlock Script
// Designed by Design Devta
// Get this: http://goo.gl/ZZu7NB
// Harman Singh Hira (http://Fb.Me/HSinghHira)

var image = "http://goo.gl/vCe26Q"; // Custom Image URL
var width = "699"; // Image Width
var height = "350"; // Image Height
var DD_Adblock = ["\x43\x2E\x47\x2E\x4A\x28\x22\x38\x22\x29\x2E\x4C\x2E\x57\x28\x43\x2E\x47\x2E\x4A\x28\x22\x38\x22\x29\x29\x3B\x28\x32\x28\x6C\x2C\x6D\x29\x7B\x32\x20\x6E\x28\x61\x29\x7B\x61\x26\x26\x38\x2E\x6F\x28\x29\x7D\x36\x20\x68\x3D\x6C\x2E\x47\x2C\x70\x3D\x5B\x22\x69\x22\x2C\x22\x73\x22\x2C\x22\x75\x22\x5D\x3B\x6E\x2E\x32\x67\x3D\x7B\x42\x3A\x32\x28\x61\x29\x7B\x71\x20\x45\x2E\x32\x32\x28\x45\x2E\x32\x31\x28\x29\x2A\x61\x29\x7D\x2C\x39\x3A\x32\x28\x61\x2C\x62\x29\x7B\x71\x20\x61\x3F\x68\x2E\x4A\x28\x61\x29\x3A\x68\x2E\x31\x5A\x28\x62\x29\x7D\x2C\x48\x3A\x32\x28\x61\x29\x7B\x36\x20\x62\x3D\x68\x2E\x31\x53\x3B\x71\x20\x62\x26\x26\x62\x2E\x31\x32\x3F\x62\x2E\x31\x32\x28\x61\x2C\x6A\x29\x3A\x61\x2E\x31\x4C\x7D\x2C\x72\x3A\x32\x28\x61\x29\x7B\x31\x43\x28\x61\x2C\x31\x77\x29\x7D\x2C\x46\x3A\x32\x28\x61\x2C\x62\x29\x7B\x36\x20\x65\x3D\x68\x2E\x54\x28\x22\x31\x74\x22\x29\x2C\x64\x3D\x68\x2E\x31\x71\x2C\x63\x3D\x64\x2E\x7A\x2E\x4B\x2C\x67\x3D\x64\x2E\x4E\x2C\x66\x3D\x30\x2C\x6B\x3D\x30\x3B\x78\x28\x22\x38\x22\x3D\x3D\x62\x29\x7B\x65\x2E\x31\x63\x28\x22\x52\x22\x2C\x62\x29\x3B\x67\x2E\x31\x62\x3D\x67\x2E\x31\x39\x3D\x30\x3B\x67\x2E\x49\x3D\x22\x31\x38\x25\x22\x3B\x41\x28\x63\x3D\x34\x2E\x42\x28\x63\x29\x3B\x66\x3C\x63\x3B\x66\x2B\x2B\x29\x31\x3D\x3D\x64\x2E\x7A\x5B\x66\x5D\x2E\x31\x37\x26\x26\x28\x6B\x3D\x45\x2E\x31\x36\x28\x6B\x2C\x31\x4A\x28\x34\x2E\x48\x28\x64\x2E\x7A\x5B\x66\x5D\x29\x2E\x31\x31\x29\x7C\x7C\x30\x29\x29\x3B\x6B\x26\x26\x28\x65\x2E\x4E\x2E\x31\x31\x3D\x6B\x2B\x31\x29\x3B\x63\x2B\x2B\x7D\x65\x2E\x31\x35\x3D\x61\x3B\x64\x2E\x31\x33\x28\x65\x2C\x64\x2E\x7A\x5B\x63\x2D\x31\x5D\x29\x7D\x2C\x77\x3A\x32\x28\x61\x29\x7B\x36\x20\x62\x3D\x34\x3B\x61\x3D\x22\x31\x30\x22\x2E\x5A\x28\x62\x2E\x42\x28\x35\x29\x29\x3B\x62\x2E\x46\x28\x22\x3C\x22\x2B\x61\x2B\x27\x3E\x3C\x56\x20\x33\x3D\x22\x27\x2B\x31\x61\x2B\x27\x22\x20\x49\x3D\x22\x27\x2B\x49\x2B\x27\x22\x20\x53\x3D\x22\x27\x2B\x53\x2B\x27\x22\x20\x2F\x3E\x20\x3C\x61\x20\x58\x3D\x22\x31\x64\x3A\x43\x2E\x31\x65\x2E\x31\x66\x28\x29\x22\x3E\x5B\x20\x31\x67\x20\x5D\x3C\x2F\x61\x3E\x26\x31\x68\x3B\x3C\x61\x20\x58\x3D\x22\x31\x69\x3A\x2F\x2F\x31\x6A\x2E\x31\x6B\x2E\x31\x6C\x2F\x22\x20\x31\x6D\x3D\x22\x31\x6E\x22\x3E\x31\x6F\x20\x31\x70\x3C\x2F\x61\x3E\x27\x2B\x28\x22\x3C\x2F\x22\x2B\x61\x2B\x22\x3E\x22\x29\x2C\x22\x38\x22\x29\x3B\x68\x2E\x79\x26\x26\x62\x2E\x72\x28\x32\x28\x29\x7B\x62\x2E\x39\x28\x22\x38\x22\x29\x2E\x79\x28\x22\x31\x72\x22\x2C\x32\x28\x29\x7B\x62\x2E\x77\x28\x29\x7D\x2C\x21\x31\x29\x7D\x29\x7D\x2C\x69\x3A\x32\x28\x29\x7B\x41\x28\x36\x20\x61\x3D\x22\x31\x73\x2C\x76\x2D\x31\x75\x2D\x31\x2C\x31\x76\x2C\x50\x2D\x31\x78\x2C\x31\x79\x2C\x31\x7A\x2C\x31\x41\x2C\x76\x2C\x50\x2C\x31\x42\x22\x2E\x4F\x28\x22\x2C\x22\x29\x2C\x62\x3D\x61\x2E\x4B\x2C\x65\x3D\x22\x22\x2C\x64\x3D\x34\x2C\x63\x3D\x30\x2C\x67\x3D\x22\x31\x30\x22\x2E\x5A\x28\x64\x2E\x42\x28\x35\x29\x29\x3B\x63\x3C\x62\x3B\x63\x2B\x2B\x29\x64\x2E\x39\x28\x61\x5B\x63\x5D\x29\x7C\x7C\x28\x65\x2B\x3D\x22\x3C\x22\x2B\x67\x2B\x27\x20\x52\x3D\x22\x27\x2B\x61\x5B\x63\x5D\x2B\x27\x22\x3E\x3C\x2F\x27\x2B\x67\x2B\x22\x3E\x22\x29\x3B\x64\x2E\x46\x28\x65\x29\x3B\x64\x2E\x72\x28\x32\x28\x29\x7B\x41\x28\x63\x3D\x30\x3B\x63\x3C\x62\x3B\x63\x2B\x2B\x29\x78\x28\x6A\x3D\x3D\x64\x2E\x39\x28\x61\x5B\x63\x5D\x29\x2E\x31\x44\x7C\x7C\x22\x31\x45\x22\x3D\x3D\x64\x2E\x48\x28\x64\x2E\x39\x28\x61\x5B\x63\x5D\x29\x29\x2E\x31\x46\x29\x71\x20\x64\x2E\x77\x28\x22\x23\x22\x2B\x61\x5B\x63\x5D\x2B\x22\x28\x22\x2B\x63\x2B\x22\x29\x22\x29\x3B\x64\x2E\x6F\x28\x29\x7D\x29\x7D\x2C\x73\x3A\x32\x28\x29\x7B\x36\x20\x61\x3D\x7B\x27\x31\x47\x2E\x31\x48\x27\x3A\x27\x31\x49\x27\x2C\x27\x31\x34\x2E\x31\x4B\x2E\x4D\x2F\x31\x4D\x27\x3A\x27\x31\x4E\x27\x2C\x27\x31\x4F\x2E\x31\x50\x2E\x4D\x2F\x31\x51\x27\x3A\x27\x31\x52\x27\x7D\x2C\x62\x3D\x34\x2C\x65\x3D\x62\x2E\x39\x28\x30\x2C\x22\x59\x22\x29\x2C\x64\x3D\x65\x2E\x4B\x2D\x31\x2C\x63\x2C\x67\x2C\x66\x2C\x6B\x3B\x68\x2E\x31\x54\x3D\x6A\x3B\x41\x28\x68\x2E\x31\x55\x3D\x6A\x3B\x30\x3C\x3D\x64\x3B\x2D\x2D\x64\x29\x78\x28\x63\x3D\x65\x5B\x64\x5D\x2E\x33\x2E\x31\x56\x28\x37\x2C\x32\x30\x29\x2C\x61\x5B\x63\x5D\x21\x3D\x3D\x6D\x29\x7B\x66\x3D\x68\x2E\x54\x28\x22\x59\x22\x29\x3B\x66\x2E\x31\x57\x3D\x22\x31\x58\x2F\x31\x59\x22\x3B\x66\x2E\x33\x3D\x65\x5B\x64\x5D\x2E\x33\x3B\x67\x3D\x61\x5B\x63\x5D\x3B\x6C\x5B\x67\x5D\x3D\x6D\x3B\x66\x2E\x74\x3D\x66\x2E\x51\x3D\x32\x28\x29\x7B\x6B\x3D\x34\x3B\x6C\x5B\x67\x5D\x21\x3D\x3D\x6D\x7C\x7C\x6B\x2E\x44\x26\x26\x22\x32\x33\x22\x21\x3D\x3D\x6B\x2E\x44\x26\x26\x22\x32\x34\x22\x21\x3D\x3D\x6B\x2E\x44\x7C\x7C\x28\x6C\x5B\x67\x5D\x3D\x66\x2E\x74\x3D\x66\x2E\x51\x3D\x6A\x2C\x65\x5B\x30\x5D\x2E\x4C\x2E\x57\x28\x66\x29\x29\x7D\x3B\x65\x5B\x30\x5D\x2E\x4C\x2E\x31\x33\x28\x66\x2C\x65\x5B\x30\x5D\x29\x3B\x62\x2E\x72\x28\x32\x28\x29\x7B\x78\x28\x6C\x5B\x67\x5D\x3D\x3D\x3D\x6D\x29\x71\x20\x62\x2E\x77\x28\x66\x2E\x33\x29\x3B\x62\x2E\x6F\x28\x29\x7D\x29\x3B\x71\x7D\x62\x2E\x6F\x28\x29\x7D\x2C\x75\x3A\x32\x28\x29\x7B\x36\x20\x61\x3D\x22\x76\x26\x32\x35\x3D\x2C\x2D\x32\x36\x2D\x32\x37\x2F\x2C\x2F\x32\x38\x2E\x2C\x2F\x32\x39\x2E\x2C\x2F\x32\x61\x2F\x76\x2C\x2F\x32\x62\x2E\x2C\x2F\x32\x63\x2F\x76\x2C\x2F\x32\x64\x2E\x2C\x2F\x32\x65\x2E\x2C\x32\x66\x2E\x22\x2E\x4F\x28\x22\x2C\x22\x29\x2C\x62\x3D\x34\x2C\x65\x3D\x62\x2E\x39\x28\x30\x2C\x22\x56\x22\x29\x2C\x64\x2C\x63\x3B\x65\x5B\x30\x5D\x21\x3D\x3D\x6D\x26\x26\x65\x5B\x30\x5D\x2E\x33\x21\x3D\x3D\x6D\x26\x26\x28\x64\x3D\x55\x20\x32\x68\x2C\x64\x2E\x74\x3D\x32\x28\x29\x7B\x63\x3D\x34\x3B\x63\x2E\x74\x3D\x6A\x3B\x63\x2E\x32\x69\x3D\x32\x28\x29\x7B\x70\x3D\x6A\x3B\x62\x2E\x77\x28\x63\x2E\x33\x29\x7D\x3B\x63\x2E\x33\x3D\x65\x5B\x30\x5D\x2E\x33\x2B\x22\x23\x22\x2B\x61\x2E\x32\x6A\x28\x22\x22\x29\x7D\x2C\x64\x2E\x33\x3D\x65\x5B\x30\x5D\x2E\x33\x29\x3B\x62\x2E\x72\x28\x32\x28\x29\x7B\x62\x2E\x6F\x28\x29\x7D\x29\x7D\x2C\x6F\x3A\x32\x28\x29\x7B\x36\x20\x61\x3D\x70\x5B\x30\x5D\x3B\x61\x21\x3D\x3D\x6D\x26\x26\x28\x70\x2E\x32\x6B\x28\x29\x2C\x34\x5B\x61\x5D\x28\x29\x29\x7D\x7D\x3B\x6C\x2E\x38\x3D\x38\x3D\x55\x20\x6E\x3B\x68\x2E\x79\x3F\x6C\x2E\x79\x28\x22\x32\x6C\x22\x2C\x6E\x2C\x21\x31\x29\x3A\x6C\x2E\x32\x6D\x28\x22\x74\x22\x2C\x6E\x29\x7D\x29\x28\x43\x29\x3B","\x7C","\x73\x70\x6C\x69\x74","\x7C\x7C\x66\x75\x6E\x63\x74\x69\x6F\x6E\x7C\x73\x72\x63\x7C\x74\x68\x69\x73\x7C\x7C\x76\x61\x72\x7C\x7C\x68\x32\x33\x37\x7C\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x7C\x6E\x75\x6C\x6C\x7C\x7C\x7C\x7C\x7C\x6E\x65\x78\x74\x46\x75\x6E\x63\x74\x69\x6F\x6E\x7C\x7C\x72\x65\x74\x75\x72\x6E\x7C\x64\x65\x66\x65\x72\x45\x78\x65\x63\x75\x74\x69\x6F\x6E\x7C\x7C\x6F\x6E\x6C\x6F\x61\x64\x7C\x7C\x61\x64\x7C\x64\x69\x73\x70\x6C\x61\x79\x4D\x65\x73\x73\x61\x67\x65\x7C\x69\x66\x7C\x61\x64\x64\x45\x76\x65\x6E\x74\x4C\x69\x73\x74\x65\x6E\x65\x72\x7C\x63\x68\x69\x6C\x64\x4E\x6F\x64\x65\x73\x7C\x66\x6F\x72\x7C\x72\x61\x6E\x64\x7C\x77\x69\x6E\x64\x6F\x77\x7C\x72\x65\x61\x64\x79\x53\x74\x61\x74\x65\x7C\x4D\x61\x74\x68\x7C\x69\x6E\x73\x65\x72\x74\x7C\x64\x6F\x63\x75\x6D\x65\x6E\x74\x7C\x67\x65\x74\x53\x74\x79\x6C\x65\x7C\x68\x65\x69\x67\x68\x74\x7C\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x42\x79\x49\x64\x7C\x6C\x65\x6E\x67\x74\x68\x7C\x70\x61\x72\x65\x6E\x74\x4E\x6F\x64\x65\x7C\x64\x65\x7C\x73\x74\x79\x6C\x65\x7C\x73\x70\x6C\x69\x74\x7C\x61\x64\x73\x7C\x6F\x6E\x72\x65\x61\x64\x79\x73\x74\x61\x74\x65\x63\x68\x61\x6E\x67\x65\x7C\x69\x64\x7C\x77\x69\x64\x74\x68\x7C\x63\x72\x65\x61\x74\x65\x45\x6C\x65\x6D\x65\x6E\x74\x7C\x6E\x65\x77\x7C\x69\x6D\x67\x7C\x72\x65\x6D\x6F\x76\x65\x43\x68\x69\x6C\x64\x7C\x68\x72\x65\x66\x7C\x73\x63\x72\x69\x70\x74\x7C\x63\x68\x61\x72\x41\x74\x7C\x61\x62\x69\x73\x75\x71\x7C\x7A\x49\x6E\x64\x65\x78\x7C\x67\x65\x74\x43\x6F\x6D\x70\x75\x74\x65\x64\x53\x74\x79\x6C\x65\x7C\x69\x6E\x73\x65\x72\x74\x42\x65\x66\x6F\x72\x65\x7C\x6A\x73\x7C\x69\x6E\x6E\x65\x72\x48\x54\x4D\x4C\x7C\x6D\x61\x78\x7C\x6E\x6F\x64\x65\x54\x79\x70\x65\x7C\x31\x30\x30\x7C\x70\x61\x64\x64\x69\x6E\x67\x7C\x69\x6D\x61\x67\x65\x7C\x6D\x61\x72\x67\x69\x6E\x7C\x73\x65\x74\x41\x74\x74\x72\x69\x62\x75\x74\x65\x7C\x4A\x61\x76\x61\x53\x63\x72\x69\x70\x74\x7C\x6C\x6F\x63\x61\x74\x69\x6F\x6E\x7C\x72\x65\x6C\x6F\x61\x64\x7C\x52\x65\x6C\x6F\x61\x64\x7C\x6E\x62\x73\x70\x7C\x68\x74\x74\x70\x7C\x64\x65\x73\x69\x67\x6E\x64\x65\x76\x74\x61\x7C\x62\x6C\x6F\x67\x73\x70\x6F\x74\x7C\x63\x6F\x6D\x7C\x74\x61\x72\x67\x65\x74\x7C\x5F\x62\x6C\x61\x6E\x6B\x7C\x44\x65\x73\x69\x67\x6E\x7C\x44\x65\x74\x61\x7C\x62\x6F\x64\x79\x7C\x44\x4F\x4D\x4E\x6F\x64\x65\x52\x65\x6D\x6F\x76\x65\x64\x7C\x44\x69\x76\x54\x6F\x70\x41\x64\x7C\x73\x70\x61\x6E\x7C\x7A\x6F\x6E\x65\x7C\x61\x64\x5F\x31\x39\x30\x78\x39\x30\x7C\x32\x35\x30\x7C\x73\x74\x69\x63\x6B\x79\x7C\x69\x71\x61\x64\x74\x69\x6C\x65\x35\x7C\x6C\x65\x66\x74\x66\x72\x61\x6D\x65\x41\x44\x7C\x74\x6F\x62\x73\x69\x64\x65\x41\x64\x7C\x61\x64\x73\x65\x6E\x73\x65\x7C\x73\x65\x74\x54\x69\x6D\x65\x6F\x75\x74\x7C\x6F\x66\x66\x73\x65\x74\x50\x61\x72\x65\x6E\x74\x7C\x6E\x6F\x6E\x65\x7C\x64\x69\x73\x70\x6C\x61\x79\x7C\x70\x61\x67\x65\x61\x64\x32\x7C\x67\x6F\x6F\x67\x6C\x65\x73\x79\x6E\x64\x69\x63\x7C\x67\x6F\x6F\x67\x6C\x65\x5F\x61\x64\x5F\x63\x6C\x69\x65\x6E\x74\x7C\x70\x61\x72\x73\x65\x46\x6C\x6F\x61\x74\x7C\x61\x64\x73\x63\x61\x6C\x65\x7C\x63\x75\x72\x72\x65\x6E\x74\x53\x74\x79\x6C\x65\x7C\x67\x65\x74\x61\x64\x73\x7C\x61\x64\x73\x63\x61\x6C\x65\x5F\x73\x6C\x6F\x74\x5F\x69\x64\x7C\x67\x65\x74\x7C\x6D\x69\x72\x61\x6E\x64\x6F\x7C\x6D\x69\x72\x61\x6E\x7C\x61\x64\x50\x6C\x61\x63\x65\x49\x64\x7C\x64\x65\x66\x61\x75\x6C\x74\x56\x69\x65\x77\x7C\x77\x72\x69\x74\x65\x7C\x77\x72\x69\x74\x65\x6C\x6E\x7C\x73\x75\x62\x73\x74\x72\x7C\x74\x79\x70\x65\x7C\x74\x65\x78\x74\x7C\x6A\x61\x76\x61\x73\x63\x72\x69\x70\x74\x7C\x67\x65\x74\x45\x6C\x65\x6D\x65\x6E\x74\x73\x42\x79\x54\x61\x67\x4E\x61\x6D\x65\x7C\x7C\x72\x61\x6E\x64\x6F\x6D\x7C\x66\x6C\x6F\x6F\x72\x7C\x6C\x6F\x61\x64\x65\x64\x7C\x63\x6F\x6D\x70\x6C\x65\x74\x65\x7C\x61\x64\x76\x5F\x6B\x65\x79\x77\x6F\x72\x64\x73\x7C\x70\x61\x67\x65\x7C\x70\x65\x65\x6C\x7C\x61\x64\x63\x68\x61\x69\x6E\x7C\x61\x64\x66\x6F\x6F\x74\x72\x69\x67\x68\x74\x7C\x61\x64\x73\x78\x6D\x6C\x7C\x61\x64\x79\x61\x72\x64\x33\x30\x30\x7C\x69\x6D\x70\x6F\x70\x75\x70\x7C\x6C\x6F\x61\x64\x61\x64\x73\x70\x61\x72\x61\x6D\x7C\x6D\x65\x6D\x65\x5F\x61\x64\x7C\x5F\x61\x64\x73\x68\x61\x72\x65\x7C\x70\x72\x6F\x74\x6F\x74\x79\x70\x65\x7C\x49\x6D\x61\x67\x65\x7C\x6F\x6E\x65\x72\x72\x6F\x72\x7C\x6A\x6F\x69\x6E\x7C\x73\x68\x69\x66\x74\x7C\x6C\x6F\x61\x64\x7C\x61\x74\x74\x61\x63\x68\x45\x76\x65\x6E\x74","","\x66\x72\x6F\x6D\x43\x68\x61\x72\x43\x6F\x64\x65","\x72\x65\x70\x6C\x61\x63\x65","\x5C\x77\x2B","\x5C\x62","\x67"];eval(function(_0xec1ex1,_0xec1ex2,_0xec1ex3,_0xec1ex4,_0xec1ex5,_0xec1ex6){_0xec1ex5=function(_0xec1ex3){return (_0xec1ex3<_0xec1ex2?DD_Adblock[4]:_0xec1ex5(parseInt(_0xec1ex3/_0xec1ex2)))+((_0xec1ex3=_0xec1ex3%_0xec1ex2)>35?String[DD_Adblock[5]](_0xec1ex3+29):_0xec1ex3.toString(36))};if(!DD_Adblock[4][DD_Adblock[6]](/^/,String)){while(_0xec1ex3--){_0xec1ex6[_0xec1ex5(_0xec1ex3)]=_0xec1ex4[_0xec1ex3]||_0xec1ex5(_0xec1ex3)};_0xec1ex4=[function(_0xec1ex5){return _0xec1ex6[_0xec1ex5]}];_0xec1ex5=function(){return DD_Adblock[7]};_0xec1ex3=1;};while(_0xec1ex3--){if(_0xec1ex4[_0xec1ex3]){_0xec1ex1=_0xec1ex1[DD_Adblock[6]]( new RegExp(DD_Adblock[8]+_0xec1ex5(_0xec1ex3)+DD_Adblock[8],DD_Adblock[9]),_0xec1ex4[_0xec1ex3])}};return _0xec1ex1;}(DD_Adblock[0],62,147,DD_Adblock[3][DD_Adblock[2]](DD_Adblock[1]),0,{}));
</script>

Thank you for patronizing Design Dev. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedbacks directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedbacks and suggestions are extremely valuable to us. Please, if you like our this post then share on your social network. Assuring you of our best service always.
Read more »

Secrets to Write Powerful Headlines


Headline has the power to grab a reader's attention and entice them into reading more about your business and your work. The headline is the most important element for getting your business content read.

#1: Keep it short and snappy

No-one pays attention to long-winded, over-blown headlines. No-one has the patience and we'll lose interest. As a rule of thumb, never use more than 100 characters in a headline, tell your readers exactly what you have planned for them, and make the headline punchy, to-the-point and understandable.


#2: Show how you can help but don't be afraid of negativity

Appeal to your target audience by telling them how your article will solve their problem or fix a growing issue. Promise them something valuable or teach them a new skill that they've not known before. Try writing 'How to... ' or 'Get started by... ', which often draws the reader into wanting to know more. 

Play around with the word order and be creative. Ask questions, demand answers and even employ a little negativity. You'd be surprised at how well 'The Questions You Should Never Ask Your Mother-in-Law' might do.


#3: Appeal directly to the reader

One way of including the reader in your work is to show them that you understand their needs and that your blog writing expertise will assist them. Writing headlines using "you" and "we" appeals much more directly.

Example are, 'What Would You Do if You Lost Your Job Tomorrow?' or 'How We Can All Avoid Making Huge Financial Mistakes'. Speaking in this way to the reader is a powerful tool - it can seem as if you've written the piece specifically for them or that you're standing in solidarity with them.

#4: List the benefits but try to be unique

Lists are effective because they tell the reader exactly what to expect from your article or post and can grab them from the start. For example, '7 Ideas That Will Change Your Life Forever' or '3 Tips For Becoming a Brain Surgeon'.


If you're going to write a list, don't rely too heavily on the use of "Things". Instead, look at using "Tricks", "Ways", "Ideas", "Lessons" and "Facts" as possible alternatives.

Remember that a headline is your first point of contact with the reader. The type of headline depends on who you're writing for and what you plan to write about.

By keeping a headline short, punchy, relevant and engaging, you'll get extra attention, more clicks and hopefully lots of keen new customers.

Source: Ravi Stuff

Thank you for patronizing Design Dev. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedbacks directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedbacks and suggestions are extremely valuable to us. Please, if you like our this post then share on your social network. Assuring you of our best service always.
Read more »

How to Prevent Image Theft on Blogger?

Put plain and simple: the only way to protect your images from being downloaded or stolen off a web page is to not put them online in the first place. While I put this fact out there as blunt as possible, there are several techniques we can use to make website downloads and image theft much harder. Of course, image theft can be defined in a number of ways, and its definition - and hence measures (if any) taken to prevent it - will depend upon the individual.

There are many ways to protect images from being downloaded, ranging from modifying the image itself , to preventing webpages downloads, to being pro-active in finding unauthorized usage of images online. And while I discuss many common types of image protection, there are many others that I do not mention. A few of the techniques mentioned in this article are directed more towards web designers (these tips are marked with an *), but several can be used on photo sharing website's such as smugmug, flickr, pbase, and webshots.

What is image theft?

Image theft is the unauthorized use of an image, photograph, drawing, or illustration. Well duh. Is it really that simple? Of course not. The hard part is that many people differ in the definition of 'unauthorized use'. Where one person may not care whether their photograph is downloaded from a web page and placed on another website without their knowledge, there are some that find this to be blatant copyright infringement.

  • Can I download an image? If you are interested in knowing whether unauthorized downloading and use is illegal: many websites will have an image use statement, and it is best and safest to ALWAYS ask the artist for permission. Ultimately, the default for image downloading and usage should ALWAYS be "All Rights Reserved" (eg don't use without permission).
  • Can I protect an image? If you are an artist interested in protecting your images: it is best to first define for yourself what your policy on image theft is, then define the measures you need to protect your images (even if this means not putting your images online in the first place). It is important to publicly display your policy on image use in an image use statement on your website.

Image Protection with a Watermark

The most common, and possibly strongest, image protection technique is to place a visual copyright watermark on the image. Image watermarks come in a range of styles: from a full copyright symbol across the image to simply small text in the corner of an image containing the copyright symbol, date, and name of the copyright holder. There is a trade off with watermark size: the larger the watermark the less likely one is to download or steal the image, but the larger the watermark the more of a visual distraction it becomes.

How to do it in Photoshop: Image watermarks are easy to create in Photoshop: make a new layer with the desired text, adjusting its size and location to best suit your needs. To type the copyright symbol © in text, you can type option+g (mac) or Ctrl+Alt+C (PC). Changing the blending mode and opacity for this layer can create a more artistic and less obstructive watermark: for example 'soft light' layer blending can create a nice opaque blend. It is possible to further customize the watermark by using layer blending options such as a dropped shadow and/or beveling. Digimarc, a technology that can be integrated as a Photoshop plug-in, can also produce a digital watermark through the use of digital noise that is read by software. Despite the presence of a watermark however, its survival through image manipulations is not definite, and the lack of a visual symbol may not prevent image theft - only act as proof of copyright owner in case of theft.

Note: Of course an image watermark specifies a copyright directly in the image, but a copyright can also be clearly indicated in text near the image; including the date of copyright, the copyright holder's name, and your rights management (eg all rights reserved or a creative commons type license). For those that manage their own webpage, a copyright notice deserves special attention on its own webpage, indicating the copyright and your policy on image downloads, usage, and theft

Protect any Image with some simple Codes

If you search on Google about this then you will find many Articles regarding this all. For websites those are not hosted on Blogger has many ways to protect images but on Blogger, we have only less ways and techniques. One of the best technique i mentioned above but you can also do something more. I discover some codes to protect Images on Blogger. Just paste any Image link below then copy codes generated in Textarea.

I hope this trick work properly in your site. But make sure first check this trick in your site as test. Because if you are using customizing Blogger Template having Auto Read More Script, then maybe this is the possibility that Image should not index by Auto Read More. This is the Bug. We are working on it. If you face this issue then leave a comment below with your site link. We will trying to fix it. There are also many other several ways to protect images. Try them too.

Disable Right Click on Images only

This is also a another useful and working trick to protect images. You can easily safe your images by putting some simple Codes. This trick is also discover by me. This is easy to use. Just put some codes with your Image Codes. Like:
<a href="YOUR_IMAGE_LINK"><img oncontextmenu="return false" src="YOUR_IMAGE_LINK"/></a>
Add Green Codes in Image Codes and remove Red Codes from Image Codes. Now you or not anyone can right click on it.

Disable Right Click with JavaScript

Another measure to prevent right clicks on images is to use JavaScript. These short scripts over-ride browser right clicks. Rather than recreate a script that has been widely published in various forms over the internet, I will leave it to the reader to search Google for JavaScript Disable Right Click. I will however mention that JavaScript is client-side, and scripts such as these can not only effect the usability of a website, but can also readily be disabled by turning JavaScript off.
<script language=javascript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
//More at: www.DesignDev.co.vu

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

// -->
</script>

Prevent Search Engine Indexing: 

Protecting images from search engine indexing can be accomplished in two ways. First, a META tag can prevent images from getting indexed, but allow the rest of the page to be found in searches:
<meta name="robots" content="noimageindex"></meta>
This meta information prevents search engine spyders (eg. robots) from indexing images only: this is in contrast to using the "noindex" or "nofollow" contents tags which are general commands that effect the entire webpage. The second method is to use a robot.txt file. This file, which should be a plain text file created with a simple text editor and placed in the root directory of a website, is inspected by search engine spyders the moment they arrive and is a method to tell spyders which directories or files on a website to NOT visit and NOT index. If you have a directory that contains all images for a website, this can be added to the file:
User-Agent:*
Disallow:/images/
Disallow:/image.jpg
The above example tells spyders or 'bots', designated by the asterisk, to disregard the directory /images/ and disregard the file /image.jpg. It should be noted that not all search engines honor these methods, and while major search engines such as google, yahoo, and msn honor them there will be other search engines that will not. Note: In the case of online photo sharing websites, flickr allows you to remove images from public searches: this is done within the Privacy and Permissions section of your account.

Note: This will disable your Site Images to Indexing on Search Engines.

Hope my this article helps you. If you are facing any issue then just leave a comment below.
Thanks.
Read more »

How to Drive Traffic Using Social Media?

How to Drive Traffic Using Social Media?

The Social Media trends are going high nowadays, and it is being used for both personal and professional purposes. The bloggers are really availing much from it and getting some tremendous results for their blog. The most prime need which is required for the fame any blog is audience or traffic. Additionally, social media can be an effective option for driving good number of traffic to your blog.


However, many of you must be kept away from the authentic way of using it to grab the traffic, but you don’t need to worry about it as ATT is going to reveal some of the best social media tricks which could be applied to grab massive readability for your blog. So, you guys are going to learn that, “How to Use Social Media to Drive Traffic to your Blog?”

So, here are the tricks which are supposed to followed on your social accounts for driving massive traffic. The tricks are completely tested and professional and you’ll get 100% results for sure. Now, without taking your time much, you are supposed to get towards the below piece of content.

Create Social Profiles For Blog

The most important and prime thing which is required to be successful on social media and to turn the social media users to your blog and that is by creating social profiles for your blog. We are asking you to create the fan pages of your blog where you could share the updates related to your blog.

You may share your newly published posts or any particular piece of information regarding your blog. The social activeness of your will compel the users to follow you and your blog. Additionally, it has been proven really helpful to drive traffic from social media to blogs and that would be a targeted ones. Therefore, we would recommend you to have your business profiles at least on these following sites.
  • Facebook
  • Twitter
  • Google Plus
  • LinkedIn


Effective Sharing

This is another important point which you should take care of.  You need to do the sharing on social media sites very professionally and sincerely. You are supposed to share your posts on Facebook Groups, Twitter, Google Plus pages and communities, Stumble Upon, Linkedin, Slide Share and some other social networking sites which would definitely pay you back in the form of traffic.


We would recommend you to take sharing as an essential part of blogging as if you want to get some traffic then do make a habit of sharing your articles on social networking sites. So, join different social networking sites and start sharing and getting attention of various users.

Write Unique Description

The Description here refers to the description of the post on social media which you write for sharing on social sites. You need to write that in conversational manner and try to connect the reader with your words. Additionally, try to build the suspense among the readers which may compel them to go through the link which you’ve mentioned in your posts.

This is a million dollar trick and you can avail it by applying this for yourselves. Additionally, try to write precise yet short description. Do not write a letter of description for your social media posts, remember nobody is going to read some big text on social sites, just give a brief intro, create suspense and elaborate the complete story on your blog. You simply need to build the connection between your social media post and blog’s post.

Use Social Buttons on Your Blog

This is another trick which you need to apply and it can be proven really helpful which will help you to get some amount of traffic on your blog. You may use social sharing and liking button on your blogs which will help you to grab great exposure of your blog and ultimately you’ll start receiving from different sites.

I would add some extra tip here that you must ask your readers to like and share your content over social media in this way you can receive some extra shares and likes for sure. So, you are strongly recommended to use social buttons like we are using on ATT.

Write Unique, Off-Beat and Appealing Content

The last suggestion yet trick from our side which can help you to acquire great status in social networking is writing unique, Off-beat and appealing content which will help you to receive genuine shares and likes and ultimately will help you to drag traffic from social networking sites.


The content is considered as the king of blogging so you need to make it as prestigious as king. So, start writing your content in unique and different way as it will help you to drag the attention of many readers which will ultimately cause great popularity on social sites.

Original Source: All Tech Tricks

Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. This Post is written by Harman Singh Hira. There is no any source so Copying or using this post for your own site is not allowed. If anyone do so get ready for facing DMCA. Please, if you like this post then share on your social networking sites. Assuring you of our best service always.
Read more »

Stylish Multicolor Buttons with Icons (Generator)


If you are a Blogger then you must have some links in your Site. Maybe, those are some referral links, download links, etc. No Style Links looks similar to texts so this should better if have some Simple but stylish buttons in your site. So here it is...


Buttons is in nine different colors and in two sizes. Even Buttons supported Custom colors to. You can add your own custom color that is familiar to your site style. More, buttons supported font awesome icons too. Even more, for newbie those has no knowledge about HTML can easily generate codes by generator. So, lets get started but check demo first...


Below is the CSS means styling of Buttons. Add below codes in between <head> tag.
<style>
/* Buttons for Blog/Site
   Creator: Design Devta
   URL: www.onlinetrickpdf.Blogspot.Com
   By: Harman Singh Hira (Fb.me/HSinghHira)
*/
.btn {
    color: #fff;
    border: 0;
    background-color: #333;
    display: inline-block;
    padding: 6px 16px;
    margin: 0 5px 10px 0;
    font-size: 14px;
font-family:arial;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    position: relative
}
.btn:hover {
    background-color: #222 !important;
    color: #fff;
    text-decoration: none;
    outline: 0
}
.large {
    padding: 12px 28px;
    font-size: 18px
}
.expand {
    display: block;
    width: 100%
}
.turquoise {
    background-color: #1abc9c
}
.turquoise:hover {
    background-color: #16a085
}
.green {
    background-color: #2ecc71
}
.green:hover {
    background-color: #27ae60
}
.blue {
    background-color: #3498db
}
.blue:hover {
    background-color: #2980b9
}
.darkblue {
    background-color: #34495e
}
.darkblue:hover {
    background-color: #2c3e50
}
.purple {
    background-color: #9b59b6
}
.purple:hover {
    background-color: #8e44ad
}
.red {
    background-color: #f85050
}
.red:hover {
    background-color: #c0392b
}
.orange {
    background-color: #f1c40f
}
.orange:hover {
    background-color: #f39c12
}
.grey {
    background-color: #95a5a6
}
.grey:hover {
    background-color: #7f8c8d
}
</style>

Now click on below button to generate HTML codes. Add them in <body> tag or in post where you want to display buttons.


Customization:

#1: If you want to add Icons in Button then add below code in <head> tag.
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css"/>

Click here to go Font Awesome site. Then choose icon and click on it. Copy icon code, looks like: <i class="fa fa-pencil-square-o"></i>. Add them before button title. Example below.
<a href="http://example.com" class="btn large turquoise"><i class="fa fa-bullhorn"></i> Turquoise
button</a>


#2: Now, if you want to add custom color in buttons then use below codes
<a href="http://example.com" class="btn" style="background-color:#000;color:#fff;">Custom button</a>

#000 is the background color of button
#fff is the text color of button

Replace colors code with your own choose. You can get some help here to select colors code.

#3: To expand button (100% width), add expand in button class.
<a href="http://example.com" class="btn large green expand">Custom button</a>

Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. Please, if you like our this post then share on your social network. Assuring you of our best service always.
Read more »

How to Submit a Site to Google News?


Google News is a major traffic source for news websites, it can also provide you some traffic if your site has 20 to 30 articles related to latest news or old news, but the article should be entirely focused on a particular news, it can be technology, cinema, politics, world news, etc.

So in this tutorial I will show you how to optimize your site for google news and how to submit your blog/site to google news and get approved easily! If you don’t have any articles related to a news or focusing a particular news then write 10 to 20 articles and apply for google news after 3-4 month.


Guidelines

News content. Sites included in Google News should offer timely reporting on matters that are important or interesting to our audience. We generally do not include how-to articles, advice columns, job postings, or strictly informational content such as weather forecasts and stock data.

Journalistic standards. Original reporting and honest attribution are longstanding journalistic values. If your site publishes aggregated content, you will need to separate it from your original work, or restrict our access to those aggregated articles via your robots.txt file.

Authority. Write what you know! The best news sites exhibit clear authority and expertise.

Accountability. Users tell us they value news sites with author biographies and clearly accessible contact information, such as email and physical addresses, and phone numbers.

Readability. Clearly written articles with correct spelling and grammar make for a much better user experience. Limiting your use of distracting ads and auto-load videos also allows users to more easily focus on your article content.


News technical guidelines

Google News uses a computer algorithm to automatically crawl news sites. To help our system determine which webpages are actually articles, your site should follow our Technical Guidelines.

Here are some common technical issues you should consider:

Article URLs. To make sure we only crawl new articles, please make sure your URLs are unique with at least 3 digits, and are permanent.

Article Links. When our crawler scans your site, it looks for HTML links with anchor texts that includes at least a few words. We are also unable to crawl JavaScript, graphic links or links found in frames.

Article formatting. Our crawler is only able to include HTML articles. This means we cannot crawl PDFs or other non-HTML formats.

Robots.txt or metatags. In order for your content to be included in Google News, our user-agent must be able to crawl and index your site.

Multimedia content. We currently are unable to include audio files or multimedia content; however, we can sometimes crawl supplementary text on pages with this type of content and do include some videos from YouTube.

While not required, we highly recommend that you submit a Google News Sitemap through a Webmaster Tools account. Please note that you may receive errors if you submit your sitemap before your site has been reviewed and approved by our team.

How to?

#1: Verify your site for Google Webmaster tool.



#3: Click on button named "Request Inclusion in Google News"


#4: Done.

Thank you for patronizing Design Devta. I am sure your visit to us must be quite satisfying and in line with your expectations from us. Just in case, it's not as you expected from us or if you are facing any problem, kindly forward your feedback's directly to us by leave a Comment below or using our Contact form. And, get assured response from my side. Your feedback's and suggestions are extremely valuable to us. This Post is written by Harman Singh Hira. There is no any source so Copying or using this post for your own site is not allowed. If anyone do so get ready for facing DMCA. Please, if you like this post then share on your social networking sites. Assuring you of our best service always.
Read more »