Guides
Showing posts with label Guides. Show all posts

How to Link PAN Card with Aadhaar Card


If you have not linked your Aadhaar with your PAN on the income tax portal yet, you should not delay it. As per latest circular from income tax (I-T) department, it is now mandatory to provide Aadhaar and permanent account number (PAN) details while filing tax returns.

The rule which will be applicable from July 1, 2017 is aimed at tax evaders who hold multiple PAN cards to escape paying tax. Therefore, after linking both the Aadhaar and PAN, the government hopes to keep tabs on the taxable transactions of a particular individual or entity, whose identity and address will be verified by his Aadhaar card

By linking the two, entities will no longer have to submit their Income Tax acknowledgement to the I-T department, thus saving tax payers a lot of trouble.

When linking, make sure that name, date of birth and gender displayed on the income tax website matches with the detail on your Aadhaar Card.

Here’s how to do it:
  • First, register yourself with Income Tax department’s e-filing portal by entering your details on the website.
  • If you are an already registered user, log in to e-filing portal by using your PAN as User ID, date of birth and password.
  • A pop-up window will appear asking to link PAN card with your Aadhaar card.
  • Enter your Aadhaar number; enter the ‘captcha’ code and click on ‘link now’.
  • If you have decided to link Aadhaar with PAN later click on ‘later’ button.
  • Now, in case after logging, there appears no popup window, then go to profile Setting and click on ‘link Aadhaar’.
  • Simply enter your Aadhaar number, enter captcha code and click on ‘link Aadhaar’.
  • Once the system matches your name, date of birth and gender with PAN card and Aadhaar database, you will receive the message “Aadhaar – PAN linking is completed successfully.”
That's all. Thank you for reading my blog.

How to share your favourite places in Google Maps


Google maps have an important role in our day to day life, so google likes to update it frequently. The latest update of google maps brings the ability to share your favourite locations with your friends.

Now onwards, you can create lists of places, share your lists with others, and follow the lists your friends and family share with you, without ever leaving the Google Maps app. You can save specific spots and share directly from the app.

If you have got the latest version installed, you’ll be able to do the following.

Open the Google Maps app on your smartphone, search for the destination you want to go or have visited and want to save, click on the ‘save’ icon. Tapping on the button with prompt you with pre-set lists like “Want to Go” or “Favorites.” You can also create your own lists.

To look back at all such places, left swiping in the app and going to places tab, you will be able to see all the saved locations. You will get icons for these places and an option to share it with other people via text, email, social networks and leading messaging apps.

Once the other person has received the list, they can tap ‘Follow’ to get the list of places recommended by you.

The lists you follow are with you wherever you take Google Maps and are viewable on mobile and desktop, and even offline. Next time you’re on a trip, download offline maps of the area in advance and you’ll be able to see all the places you’ve added to lists on the map itself.

It is a very interesting feature because a lot of times you want to suggest multiple must-see places in a city but often have to send multiple links or references to such locations. Now that everything is in one place, it makes it easier for the others to go through the list and enjoy these specific spots.

4 Signs a Smartphone May Have a Virus


Malware is a nightmare that you will not want. I personally have never experienced it, and believe me, your time and your mind will be drained in order completely free of the grip of malware.

Based on that experience, here are four symptoms that indicate smartphone Android pal was plagued with malware.

Sudden Internet Data Boros
Characteristic of the first you should notice is the usage pattern data that suddenly jumps drastic when your online activity is mediocre. Specifically does this mark can not mean malware is attacking, because if you turn updates automatically, the same phenomenon will also be found. Therefore, make sure the other symptoms.

Ads Appear On Screen Smartphone
The second sign suddenly pops up ads on the screen when smartphones are not running the application or game. If you notice, your ads will typically appear only when the application is running or in other conditions when the application to be closed.

But if an ad appears on the outside of these times, such as when you are in the menu bar or display the home, then it is suspect as the activity of malware.

Installed Applications Itself
The third sign is the most easily recognizable, typically malware will download and install the app without your knowledge. If this is found, try to check in the Settings menu - App, whether there are applications Time Service. If anything, the malware in action watches out.

If not Time Service, use the file manager that is better equipped to find malware Monkey Test. Both malware most often is the culprit of the problems mentioned above. From my experience, the malware is difficult to overcome, I was alone in the end have to do a flash reset.

Foreign Folder Appears
Signs of the next is the appearance folder unidentified usually deliberately created by the malware to accommodate the data. If it is found, should be vigilant and use antivirus are good to prevent attacks more dangerous.

The fourth of the above symptoms is a common sign smartphone that is being colonized by malware. There are some solutions that you can take.
  • Use antivirus qualified, but from my experience, this method does not always succeed. 
  • Uninstall apps that you download from a source that is not clear and delete the file in question. 
  • Factory reset 
  • flashback 
  • Using a third-party ROM

CSS Button With Sliding Background Color


As developers and designers begin to become a bit more comfortable with web design, often times they will want to start improving overall user experience by using techniques such as CSS transitions to animate different elements on the site based on interaction, for instance on hover. One trick that’s very easy to implement and almost always looks great on objects like buttons or navigation links is having the background color transition from one color to another with a horizontal wipe effect. To give you an idea of what I’m talking about, just hover the button belo
As you can see, when you hover the button, the background color changes from white to red with a smooth sliding effect from the left to the right, And also a circle moves from left to the right. Implementing this effect is fairly simple and only requires a couple of lines of code, the thing you want to primarily focus on is the timing and the colors to make sure the animation is clean and pleasing to the eye.

To start, you’ll need a button or navigation item set up. Apply the following HTML code to where you want to display this button.
<a href="#" class="btn-slide" target="_blank"> <span class="circle"><i class="fa fa-rocket"></i></span> <span class="title">Live Demo</span> <span class="title-hover">Click Here</span></a>
Once you have your button in place, it’s time to set up the CSS. Place the below CSS code inside the style tag of your template.
.btn-slide {
position: relative;
display: inline-block;
height: 50px;
width: 200px;
line-height: 50px;
padding: 0;
border-radius: 50px;
background: #fdfdfd;
border: 2px solid #e73138;
margin: 10px;
transition: .5s;
}
.btn-slide:hover {
background-color: #e73138;
}
.btn-slide:hover span.circle {
left: 100%;
margin-left: -45px;
background-color: #fff;
color: #e73138;
}
.btn-slide:hover span.title {
left: 40px;
opacity: 0;
}
.btn-slide:hover span.title-hover {
opacity: 1;
left: 40px;
}
.btn-slide span.circle {
display: block;
background-color: #e73138;
color: #fff;
position: absolute;
float: left;
margin: 5px;
line-height: 42px;
height: 40px;
width: 40px;
top: 0;
left: 0;
transition: .5s;
border-radius: 50%;
}
.btn-slide span.title,
.btn-slide span.title-hover {
position: absolute;
left: 65px;
text-align: center;
margin: 0 auto;
font-size: 16px;
font-family:'Open Sans',sans-serif,Arial;
font-weight: bold;
color: #e73138;
transition: .5s;
text-transform:uppercase;
}
.btn-slide span.title-hover {
left: 80px;
opacity: 0;
}
.btn-slide span.title-hover {
color: #fff;
}
You can change the highlighted codes (color, size, etc) with your own codes.

So now if you’ve followed all of the instructions, you should have a simple link button element that uses a linear gradient to create a clean CSS transition from a white background to a red background. The example is included again below

That's it! I hope you like this Button! Stay tuned for more cool Codes!

How To Make Your Grammar Perfect


Today, while surfing on the web I found an Interesting tool. You know friends the actual advantage of this tool is very good. The reason I'm telling you because it helps you to make your grammar perfect. So now I'm going to talk about this tool and the name of this tool is Grammarly. Yes, Grammarly is a best online tool to make your English perfect.

A Brief Description Of Grammarly: The Grammarly helps you write better English and efficiently corrects texts. Based on the context of complete sentences, Grammarly uses patent-pending technology to correct grammar mistakes, spelling mistakes, and misused words, with unmatched accuracy. Grammarly improves your text just like a human reviewer would.

Grammarly is the world's leading software suite for perfecting written English. It checks for more than 250 types of spelling, grammar, and punctuation errors enhance vocabulary usage and suggests citations. So now I'm going to show you how you can get this tool absolutely free*.

How to get registered on Grammarly?
First, you just need to visit on the official website of Grammarly. Now click on the red Get Grammarly/Sign up button. After that, It will ask you to "add a Grammarly extension on your blog" then, Click on Add.(See the below image)


Now on the next screen, you will see a Signup form like the below image. Fill this form and then click on the Sign Up button to continue.


Now on the next screen, you will need to select a plan (e.g Free/Paid) (See the below image)


Now choose the best plan according to your need. After choosing the free plan the sites redirect you to the dashboard. There are some options to create and upload documents.


After clicking the new button, You get an online editor, simply type your content or copy and paste your content. The site checks your all grammar - spelling mistakes within seconds.



Awesome Advantages Of Grammarly
  • Correctly spelled words used in the wrong context mean embarrassing mistakes for you. 
  • Enhance your sentences with Grammarly’s word choice suggestions that optimize for the context of your document. Readability and meaning are improved instantly. 
  • Grammarly scans your text for proper use of more than 250 advanced grammar rules, spanning everything from subject-verb agreement to article use to modifier placement. 
That's it! I hope you like this tool! Stay tuned for more tips and trick!

Dynamic Ways To Increase Blog Traffic


How to drive more traffic to your newly created blog within a few days - At the present time every blogger wants to drive more traffic to their blog. Because if you have a good traffic to their blog then you can earn a good income from your blog. So if you are a new blogger and want to learn how to get genuine traffic, then you are at right place because today with the help of this article we are going to how we can drive more traffic to their blog within a few days. Today I'm going to share with you 11 dynamic ways to increase your blog traffic. If you ready, then read the below points.

Don't Copy/Paste, Always Write Quality Content.

At this time, so many bloggers are doing this major mistake. A quality content is more attractive comparing to copy/paste. So friends, keep in mind and never do this kind of work. As for as possible, always think about to write a quality content. Always publish a quality content to your readers. (While writing an article should not think like an admin always think like a visitor).

Post Comments On Other Blogs.

Doing Comments on any other blog is also good for making some extra free backlinks. But keep in mind always make comments on that blog which is related to your own blog niche. (e.g. If you have a discount/coupon related blog, then only comment on promo/coupons related blog.)

Use Social Media Plugins

It's my suggestion to you guys if you are a new blogger, then always use social media plugins/buttons on your blog. Because at this time it's helping everyone to drive more traffic to your blog. (You can get some cool social media widgets from below links.)

Do Guest Posting

Guest posting is also good for every new blogger. The reason I'm saying to you because if you are writing a quality content on some other blog, then it will help to drive more traffic to your blog. Simply add your own blog URL on that article and let them know about your blog.

Image Optimization

Before publishing your article keep in mind. "don't forget to optimize all your images".

Use Responsive Templates

As far as possible make your blog template responsive. A responsive and mobile friendly template is good for grow up your audience. You can get some responsive, seo ready and mobile friendly templates by clicking on the below link.

Advertising

If you have some extra cash, then advertising on Google Adwords or Facebook is also good to drive more traffic to your blog. You can also advertise your website using the Stumbleupon ads – If anyone like your ad, then you can get more free traffic.

Finding Keywords

Find a high CPC keyword for your blog by using this keyword research tool. It's a free one provided by Google.

Make Some Video Post

Create a YouTube channel and make some video posts because video Blogging is a great way to go viral.

Always Be Inspiring

The best one is, tell your audience about overcoming adversity, or the mindset necessary to do so. Encourage them to keep trying, or set up a challenge that they can use as motivation to complete something important. (At the last I want to say "blogging is incredible").

That's it! I hope you like this tips! Stay tuned for more blogging tips and tutorials! Thanks You!

Practical Methods to Increase CTR & CPC - Google Adsense Guide


CTR means Click through Rate, A ratio of number of Ad clicks according to Ad Impressions. CPC means Cost per Clicks. After getting AdSense approval I started creating different ad units for my blog with thinking of making huge money from AdSense.

Here in this article we going to discuss some practical method using which you can increase your AdSense CTR & CPC, So Let us know which those methods are.

Blog Layouts & Ad Sizes affect CTR

Google & Other bloggers say that big Ads attract more user attention, this is not 100% true. If your blog width is too high and even you are using Big Ad sizes, There is no guaranty of getting High CTR in those big Ad units. If your blog's width is pretty low and you use 300X250 unit then there is 98.99% chances of getting more user attention in your Ad units. Large rectangle 336X280 unit is a best performing ad unit for small width blogs.

Put Ads near the Navigation Areas

A user comes to your blog to read your article, while reading he concentrate only on the content he reading and for which he comes to your blog, he only will click on the Ad when he navigate your blog or when he completed reading of your article so it is best idea to place Ad Below the End of your article and near the navigation links of your blog.

Remove Border and Background colors from Ad unit

There are three types of Ad clicks occurred in blog, first is Accidental Click and second is Confusion Click and last is Interest based click. Accidental Clicks are occurred by the user while surfing your blog, Some bloggers put Facebook like popup exactly above the Ad unit, When user click on Skip button, Chances of accidental clicks get increased (We do not Recommend to use this strategy of getting clicks). Sometimes a user clicks on link ads in the confusion, he thinks that the link is a part of that blog. Interest based ads are clicked by users who keeps cookies On in their browser, Google collects cookies from the user's browser and serve the Ads of those sites and products which were previously seen by users in their browser. Just remove border and background from your Ad units to make it not looking as an Ad.

Block Low Paying Ads to Increase CPC

Low paying Ads appears and user clicks on the Ad and you get less amount of money, it means your single clicks are going waste. Just block such Ads, to do this go to ctrlq.org/sandbox and put your blog link and hit enter, you will see the list of Ad units appear in your blog. Just copy the link of Ad and go to the keywordspy.com and put the Ad's link and hit Enter. You can see the PPC price of that Ad, if the price is low then note that link in notepad, Do the same with other Ads and make a list of URLs of low paying Ads. Now login to your AdSense account and click on "Allow/Block Ads" option at the top, Put all those low paying Ad's URLs you noted on notepad and block them. By doing this you will able to get quality Ads in your blog through which you can get Higher CPC.

Avoid More Ads for Higher CPC

People thinks that more Ads means more money, they are wrong. It is important to know that High payable Ad appear first and second appearing ad is less low payable unit than first, Third unit is low payable than second. In this situation if user click on second or third unit then you will lose the chance of getting high amount of money from first unit. Just use one or two AdSense Ad units to get Higher CPC.

Quality Traffic & Clicks will Definitely Increase CPC

Users from USA/Canada/UK are more valuable than Users from Asian Countries In terms of AdSense Earning. Try to get quality traffic & Clicks from USA/UK/Canada to get High AdSense CPC.

Check Radiation Level of Your Smartphone by USSD code


A life without smartphone? No one can think of without it. Smartphone has so much penetrated radiation level in our daily life. Excessive use of smartphone may cause health problems but if you are even using less a smartphone with bad SAR, that is most dangerous.

Here SAR stands for Specific Absorption Rate which is a measure of the amount of radio frequency energy absorbed by the body when using a mobile phone. Federal Communications Commission (FCC) has adopted limits for safe exposure to radio frequency (RF) energy which is 1.6 watts per kilogram (1.6 W/kg). Any smartphone at or below this SAR levels is “safe” to use.

You can check Radiation level in terms of SAR of your smartphone by dialing a USSD code *#07#, if results shows SAR below 1.6 watts per kilogram (1.6 W/kg) then it is OK otherwise you are advised to change your smartphone immediately.

In addition to radiation level you must know about following important USSD codes to get more information of your smartphone.

*#*#4636#*#*
: It gives a lot of information of smartphone under following four categories.

Phone Information: It shows IMEI, Signal strength etc.

Battery Information: It shows battery status, level, health, voltage, temperature, technology and time since boot.

Usage statistics: it shows how many times and how much time every app on your smartphone you have used.

Wi-Fi information: It shows Wi-Fi API, configuration and status.

*#06#: It shows the IMEI number of your phone which is a 15 digit unique number for your phone, basically it is Social Security number of your phone. Sometimes when typing in *#06# it will add an additional 2 digits at the end. The first 15 digits shown before any space or dash is your IMEI. Note down IMEI number of your phone in your diary, it is very useful when your phone got stolen.

Hope you enjoyed above important information, to receive further posts on your inbox please subscribe to our newsletter, if you find this article useful, please share and support us. Thank You!

How to Start a Blog on Blogger


Nowadays, More and more people want to start a blog for sharing their knowledge, increase the social popularity or to earn money by sitting at home. Some of the people by the servers & and blogging scripts at starting without knowing about anything. This may cause the loss of the money by the users and as we all know that blogging is the continuous process for the a serious blogger, some people left blogging because of they only want to earn money out of it, they don’t want to add the quality content on the website. These types of blogs and shut down very fast as their main focus is on earning money.

Blogspot is a great tool to start a blog for free, this could also help you to know how your interest remains after some time of blogging. This is a free service and also give some auto SEO functions as it is the product of google itself. In this post, you can learn how to start a blogging with Blogspot for free.

Starting Steps

1. First of all, choose a particular topic which you want to post. Think about your interest and stick to a one dedicated topic on which you want to blog.

2. Choose and shortlist your domain names which represent your blog category. Select the best possible domain name which showcase your blog and which is easy to remember.

Now if you are starting blogging, you need a blogging platform interface where you can post your article without interaction of coding.

There are many platforms from which you can start your blogging journey. Some are paid like wordpress.org in which you need your own server to run ,and some are also free like blogspot.com by google, wordpress.com etc.

Creating Blog with Blogspot.com

We start with the blogspot.com , as it is very easy to start with at beginning the stage of blogging.

1. Go to blogger.com

2. Login with your gmail id

3. Now click to New Blog button, at the left side of the screen.

4. Choose your available domain address, your website title and also choose the basic template which you like ,then click on Create Blog button.


5. Blog Created Successfully

Start Blogging with Blogspot

Now its time to first post on your blog. Let start with an overview of the Blogspot Blogging Platform.

Blogspot Dashboard shows all the basic quick look of your blog information like page views, comments, followers etc.


When you click on Posts -> New Post. there is a full interface for customizing and writing post beautifully which helps to post with no coding knowledge.


You can also add the widgets in the website template layout without coding because Blogspot gives a full user-interface to post a quality article.


Blogspot also gives a fully functional Stats dashboard which shows a well-organized tracking data of the visitors that may help to optimize your website.



You can also edit and customize your website theme as well as backup and restore your template.


And the most important thing, you can also add your AdSense on your blog spot free website.


You can earn from the website where there is no investment needed at all. Best of luck for the new bloggers. Hope you can achieve your goal and make a successful blog.

7 Things to be Avoided to Keep Google Adsense Safe


After getting approval for a Google Adsense account many newbies start using adsense carelessly and sometimes they lost Adsense account and never get it back again.

It is important to use adsense account in a such manner that it can be with you for long term. In this article I will tell you the tactics which should be avoided.

How To Use Google Adsense Safely?

First of all read the Google Adsense Program Policies, If you haven't yet then do it right Now, Google Adsense Guidelines must be followed strictly.

Copyrighted Contents: Avoid posting copyright materials, It is strictly Prohibited, Try to Write at least 80% Original content.

Auto Generated Contents: Avoid auto generated or machine generated contents, If your content is looks like machine written content then also it will be termed as auto generated even if you written it by your hands.

Sticky Sidebars:
Many Bloggers put their Adsense code at the Fixed Sidebars or make adsense code Sticky to avoid Scrolling. It is strictly prohibited for Adsense. You can use sticky widget for other gadgets but not for Google Adsense.

Traffic from a Single Source: It is important to get traffic from different sources, Focus more on trying to get organic traffic, Organic traffic is best than other sources of traffic. Visitors come through google search results or other search engines remains for long time in site, This decreases the bounce rates of your site.Traffic from a single source may be termed as purchased traffic or bot traffic so try to get traffic from different sources.

Adult Contents:
Hey guys as you know very well adult and porn materials are strictly prohibited for google adsense, If you already have an adsense account and thinking to monetize your adult site from google adsense then stop thinking right now, generally google adsense team does not notice about these things after fully approval of adsense but if anybody complain about it they will take strict action on you.

Uses of Unwanted Scripts: Google adsense allows some small modification in ad codes butt does not allow to use any script that pushes the ad code below the folds or affect the ad performance or make it hard to be identified by visitors.

Invalid Activities: Invalid activities such as Invalid clicks, Bot Clicks, Requested Clicks must be avoided. Some people have joined some groups in facebook where they request others to click on their Ads, It must be avoided immediately. Google is not an idiot, he majors all the statics of your adsense activities and create a figure which can easily tell the google about invalid clicks. So let the clicks occurred naturally.

How To Add hreflang Tags In Blogger And Other Websites


Hey guys do you know google uses hreflang tags to identify the language of any blog or website. By default in some blogger templates it is already added but in some templates it is unavailable due to which google cannot identify the language used in any blog or website.

When you submit your website to the google webmaster then it is important to tell the google which language are you using in your blog? By default google uses hreflang tags to identify the language in a blog so i gonna tell you how to add this tag in your bogger template or other website template. By using this simple method it can be done easily.Please read all the details carefully and create backup before any editing in your templates.

How To Add hreflang Tags In Blogger And Other Website?

To add hreflang tags in blogger template all you have to do that just go to the blogger template option and click edit then paste below code in the <head> section of your blogger template.
<link rel="alternate" href="www.smartpik.in" hreflang="en-in" />
In the above code just replace www.smartpik.in from your URL. Green color highlighted character "en" is used for English Language and Blue Highlighted characters "in" is used for country INDIA you can change these characters according to your country and language.

If you are using more than one language in your blog then you can use more than one hreflang tags in your blog just change the green highlighted characters with desired language codes.

5 Hacks To Help Your Website Bring In More Visitors



Almost every business has some kind of web presence today. It will not be entirely wrong to state that every business needs a website to be able to stay ahead of its competitors. It has been proven that websites do not only help bring in more customers but can also help business in other ways. And how do you enjoy these benefits? You have to bring in more visitors to your site.

Search engine optimization, also known as SEO, is one of the most common ways to bring traffic to a website. However, things are changing and today businesses are using different models to grow online. So, without much ado let’s have a look at five hacks to bring more visitors to your site.

1. Refer A Conversion Rate Expert

There are a lot of web designing companies that create attractive websites, but merely having an attractive website is not enough – one needs a website that actually converts. For this reason you need to find conversion rate experts; these are individuals that know the ins and outs of a website and can help polish your website to bring in more customers. This may sound like a costly investment, but in the long-run you will be able to save on marketing and other expenses.

2. Know Where Your Visitors Are

When you get to know where your website visitors are coming from and what they are looking for, then it will let you know that you need to re-position your offerings and meet the visitors’ requirements to entangle more clicks. Websites such as crazyegg.com are the best tool to let you know such information. These tools will also let you know how far down your visitors are scrolling on your web page.

3. Live chat

The live chat feature on a website can work wonders for your website. It is widely assumed that the live chat feature is just for ecommerce sales sector, but this facility is fit for all. Whether you have a restaurant business or an education institution, you can make use of this facility. Having a Live Chat option makes visitors feel they can get in touch with you anytime they want and helps build trust. This is a low cost added service and can produce noticeable results. Plus, you do not have to be available 24/7 but only during office hours.

4. Exit Popup Offer

As unfortunate as it may sound, a huge number of visitors either do not convert or do not return. Why not try every possible option to anchor them? Popup Exit Offer works great in increasing conversion rates. In the long-run these exit captures will improve your overall return on investment. This is basically a way to attract your visitor’s losing interest by offering them more to come back.

5. Testimonials and Trust Signs

It is necessary to win your visitor’s trust. Trust is generated when they see testimonials from industry clients and other customers, and as a result they make purchases. Showcase awards, accreditations and recognitions from reputed organizations are the trust signs that would make your visitors feel comfortable when doing business with you. And above all, don’t FAKE!

Following these hacks can help you bring in more visitors to your website and would increase your sales which would eventually add up to your business’s growth.

Create Privacy Policy Page For Blog to get Google Adsense Approval


Have you created a new website or blog ? Then it is the time to know about a little but important thing, that is privacy policy details.

To get google adsense approval it is important to create a Privacy Policy page for your blog.

Have you ever seen an option for privacy policy in different websites or blogs ? I know you have seen because almost every blog or website have its own privacy policy. So lets know what is the privacy policy details and how it is so important for any website.

A privacy policy is one of the most important documents of the website, it details about how is your website providing information to the users, in the other words privacy policy is a way to inform any person that what are the procedures of providing information on any website.

Besides these a privacy policy is also a legal document, hence great efforts should be adopted to create such a documents, so that people can easily understand your provided details.

Privacy policy have various sections which are following

Introduction: In this section some information about your website or blogs are shared , if your website has any special function then it's information can be shared in this section, if your website has such a contents which are not suitable for children (under 16) then you can inform them directly in this section.

Information collection: In this section you can share which type of information you are collecting, with your visitors. Some websites use the information collected by visitors and some websites publish their own information or services, it totally depends on the website owner. If you are collecting information from people by asking them to fill a form and submit them, then you will have to clear it on this section.

Method of Collection: This details the methods you use to collect the information. Is it all automated? Do the forms visitors fill in collect other information, such as the original referrer? All of these questions will help you build a detailed description of how you collect information.

Storage of information: In this section you have to describe, how do you store the information whether it is stored on database or any other method.

Contact details: It is very important to be as transparent as possible, people love to visit such a website where the admin is user friendly, you should provide your email addresses, contact numbers and real world addresses so that people can write for you.

If you find this post useful, please share and follow us. Thank You!

How To Report Adsense Invalid Clicks To Adsense Team


Google Adsense is the world’s most popular and high paying CPC advertisement network. Adsense is the first choice of all publisher because, they share up to 68% of revenue for content. As we all know, Google Adsense is very very conscious about quality. So if someone join their program, they must follow Adsense Terms of Service.

If Google Adsense Team notice any kind of irregular activity in your account, you will be kicked out from the Adsense Program. Thousands of publisher already get banned by Google adsense. They will not be able to use adsense again in the future. So if you are a publisher of Google Adsense, you must handle your adsense account very carefully.

If you see that, someone is clicking your adsense ads frequently then what could you do? You will have to understand that, he is not trying to increase your revenue. He may trying to ban you from Google Adsense Program. If you are facing this kind of problem for the first time, then you should know the way to report adsense team and let them know about these invalid clicks. Because you are not surely need to lose your adsense account for any reason.

As I said before that, Google is very very conscious about quality. So when Adsense will detect some irregular activity like invalid clicks, Google will understand that someone is trying to ban you from adsense. That’s why Google will detect those fraud clicks and your earning will be discredited for those fake clicks. Don’t worry, your real earning will be available in your account.

Although Google will understand about those fake clicks but I always suggest to report adsense team for this kind of activity. So now let me show you how you will notify Google Adsense if you detect this kind of irregular activity to your account.

First of all, it isn’t compulsory to report Google about fraud clicks. But if you want to stop worrying about getting banned, then you may consider contacting with Adsense Team. After all, it could be a reason for getting banned from Adsense.

To notify Adsense about invalid clicks, you’ll need to fill out the Invalid Clicks Contact Form.

Just enter your Name, Email Address, Publisher ID, Your Site URL, Select a Topic, Date and Time of the click activity.

It also asks for describing why those clicks seem invalid to you and to indicate suspicious IP addresses, referrers or requests. If you don’t have any description or data to put there, just leave it blank and click on ‘Submit’ button.

That’s it. You are done!

Hope it helps. Once again, it isn’t obligatory to report Adsense about invalid clicks. But if you want to be on safe zone, you can do that. If you find this post useful, please share and follow us.

Thank You!

How to Host your Websites on Google Drive


If you are looking for a free website hosting either for permanently or temporarily, then Google drive is the best choice for those who does not want to spend a penny for web hosting.

You can host any files (JavaScript, CSS, and Images etc.) on google drive server but can't host PHP.
Those who wants free hosting, follow the following simple steps:

Step1

First, You have to create all necessary files (CSS, Index and Images). Then, Log in to your Google Drive account.

Step2

Create a Folder as 'website'. Now, open the folder (website) and upload all files.

Step3

Now, Right click on the folder ( my website ) and then 'Share'.


Step4

Now, Click on 'Advanced'.


Step5

Now, Click on 'Change' and then change the sharing option to public and save the changes.



Step6

And then, copy the URL address of the folder and keep in Notepad.


Step7

Now, Your URL address something look like below,
https://drive.google.com/folderview?id=0B-AYvC9Y1riabVdVZlk4Vy1NQTQ&usp=sharing
The File id is highlighted in red color.

Step8

Now, we have to make some changes to host files. And replace red color section in below URL by your file id.
http://googledrive.com/host/file-id
Step9

After making changes, URL will something like below,
http://googledrive.com/host/0B-AYvC9Y1riabVdVZlk4Vy1NQTQ
Now, Copy and Paste the URL on the browser address bar and hit 'Enter'. done. Your site now running free on the internet using google drive at free of cost.

The URL address of the hosted website is too long, then you can short your URL by any URL shortener site or redirected the site using a custom domain name.

9 Proved Methods To Increase Adsense Revenue


Google AdSense is on of the best Contextual Advertising Program, Famous these days and being used by millions of bloggers and webmasters.

Today I gonna tell you how can you increase your AdSense earnings by doing some smart changes in your blogging ways.

9 Proved Methods To Increase Adsense Revenue

AdSense Program Policy: Always Follow the AdSense program policy it will make good effect.Google loves the publisher who strictly follow the google adsense program policies.

Select A Best Niche: Good Niche will generate huge money, As the adsense earnnings totally depends on the money spent on the google adwords to show the particular ads, some niches are more profitable like Health, Insurance, Webhosting.

Keywords Selection and Placement: keywords plays important role to show the high paying ads on your blog. You should find good keywords with High CPC, You can get High CPC keywords through Adwords, Semrush. There are other online tools available in the web which provide the information of high CPC keywords. After Finding good keywords choose the right place on your blog and articles to put these keywords. Title, First paragraph of article And last paragraph of articles are the best places to put keywords.

Selection of right AdSense Units: It is very important to choose a right ad units in your blog. Use both Text and Image units and choose the color which match your blog color. Use multiple ad units 300x600 large skyscraper, 336x250 large rectangle and 300x250 medium rectangle ad units are considered to most revenue generating ad units.

AdSense Placement: It is very important to place any ad unit in right place, because wrong placement of ads cannot attract visitors. placing adsense for content unit in Below title, Below the post body and at least one unit in the sidebar is good. A horizontal link unit can be place in navbar or sidebar and a search box in sidebar and another one below the post body will make good effect.

Get Genuine Traffic: A good traffic is a main factor in making money with adsense, In India the CPC is too low ( $0.08 to $1 ) it can be increased by getting genuine pageviews from US, UK, Australia, Canada and other countries.Never try to use script or other robotic tools to get pageviews it will be harmful and adsense may be in danger.

Multiple Ad networks: Always use only adsense to monetize your blog it will be good to get high CPC.There are many bloggers who use multiple ad networks along with adsense which reduces the quality of blog and page impressions.

Keep updating: make your blog like a shop of hot cake, Keep updating your blog with interesting and new things. Write at least one article everyday it will help to get returning visitors.

Responsive Theme: Make your blog responsive so that it can be viewed in all devices properly. A responsive blog makes a good impact, people love to visit those blog which are easy in navigation and eye catching.

5 Simple Ways To Access Blocked Websites


There are many reasons authorities block access to certain websites. Some workplaces may block social media sites or access to your personal email. You might also experience blocks at your university, college or school.

If you find yourself in this situation, and are looking at a workaround you can apply to overcome this block, don’t worry, we have 5 ways you can try.

We have listed 5 methods here you can try, because different types of blocks require different types of techniques to bypass. Do try each of them to you find one that works for your situation.

1. Accessing Via IP Instead of URL

Some software block website pages by its name or URL only. For example: a block may be applied on www.facebook.com but not on the IP of the website.

You can get the IP from Terminal on OS X or Command Prompt if you using Windows. Insert this and press Enter.
ping yourdomain.com
Copy the IP that is shown in the results onto your browser’s address bar and open the site as usual.

2. Use A Proxy Site

There are many free web proxies that provide services to browse the web anonymously. You can use them to access any blocked site easily. Just go the website and enter the URL you wnat to browse.

How does this work? When you browse a website using a proxy site, you are not actually connected to that website. You are connected to the proxy server, while the proxy server is the one that is connected to the true website destination. What you see is cached version of the site that the proxy server gives to you.

You can try Proxysite or Proxery, but if you want more options, check out Newproxysite.

3. Use a VPN Service

A Virtual Private Network or VPN is a remote server that gives you private access through a public network. VPN makes it looks as though you are browsing from the country where the server is located, thereby hiding your real identity.

There are many VPN service providers you can use, some offer services for free, others require a subscription. Hola is one of the best free VPN service. It allows you to browse privately and without censorship, and it has a browser extension for Chrome and Firefox users.

4. Use TOR Browser

Tor is a browser that allows you to browse anonymously, prevent your browsing habits or your location from being tracked, ensuring privacy. Thanks to volunteers from around the world that create this distributed network of relays, you can browse under the protection of Tor.

To use, first you need to download the Tor Browser; install it like a usual application. Open the application, then click Connect to start your connection with the Tor network.

5. Using Public DNS of ISPs

Some Internet Service Providers (ISP) use their own DNS to block access to some websites. To open the block you can bypass the restriction from ISP using Google Public DNS.

Under the DNS configuration of yoru network, change your DNS to the following Google Public DNS IP addresses as your primary or secondary DNS server.

IPv4
8.8.8.8
8.8.4.4
IPv6
2001:4860:4860::8888
2001:4860:4860::8844

Remove Backgrounds from Photos without Photoshop

Adobe Photoshop contains tools like the background eraser and an extract filter to help you quickly erase complicated background images from digital photographs.

Want to do something similar but without Photoshop ?

Just upload your picture to FotoFlexer, an online photo editor, and open the Geek tab. There you’ll find an intelligent tool called "Smart Scissors" that works much like the Magnetic Lasso selection tool of Photoshop.


erase-backgrounds Draw a rough boundary around the image that you want to separate from the background and you will notice that "Smart Scissors" magically snaps the curves to the nearest edge.

Once satisfied with the selection, click "Create Cutout" and you’re done.

You can use this free FotoFlexer service to extract picture of a particular person from some group photograph or you want to merge two photos – cut a portion from the first image using Smart Scissors and place in over the second picture.

The cutouts can be saved as JPGs or a PNG so I guess it maintains the transparency as well.

How to make your own handwriting Font for Free!




Today I am going to show you how to create your own font using your handwriting. There are thousands of fonts available out there but you can be sure someone is using the same font as you are. Ever thought of having your own font, or better yet turning a handmade alphabet into a font for personal or creative use?

Here I will walk you through the steps and show you how to turn your handwriting into a font for FREE.

First, go to MyScriptFont.com. You’ll then need to download the printable template, either as a PDF or PNG. Once you open up whichever version you prefer, then print it out.


Next, write out the alphabet and numbers in your style, using a black marker. Dark blue also works. It is important that you use a felt pen instead of the regular ballpoint pen, or the text would not come out clearly.


When you’re done, scan the template at 150dpi or 300dpi. The template needs to be scanned in grayscale and in ‘portrait’ orientation and should be in JPG, TIFF or PNG. The file size should be a maximum of 2MB or up to 6000×9000 (pixels).

Upload your scanned fonts to the MyScriptFont website. You can name your font and set it in the format you want the font to be: TFF or OTF format. When you’re done with the settings, click ‘Send file’ and let it load. After the font is converted, you’re allowed to download it to your computer.


For Windows, go to downloads and find the downloaded Font, And just double click on the font to install it on your PC.

8 Essential Browser Shortcuts

1. A shortcut to any website

Whatever you type into the URL bar can be surrounded by www. & .com by pressing control + enter.

2. A shortcut to highlighting a URL.

Using CTRL + L will highlight the url/address bar in Chrome, Opera & Firefox.

3. How to do a reverse image search.

Press and Hold ‘S’ and right click an image to do reverse image search in Chrome.

4. How to restore a closed tab in a browser.

Pressing Ctrl + Shift + T opens up the last tab you closed mostly by mistake. This is a godsend!

5. Switch between Tabs.

Simply press Ctrl + Tab and you can easily move to the next tab in the browser.

6. How to stop a distracting GIF.

On most of the occasions pressing ESC will halt animated GIFs that are distracting.

7. Open an incognito window quickly

You might be aware of the Incognito, but it is tedious of go through the options to enable it. Instead Ctrl + Shift + N opens up an incognito mode tab on chrome browser quickly.

8. Clear cache with ease.

Press CTRL + SHIFT + R and then refresh the page. All the cache is gone.