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.