In order to verify author content with Google, you must have a Google Profile, which you can get here. To read more about author verification, see this.
To show your Google profile URL, simply add this snippet of code to your theme's author.php file where you want the link to display:
<?php
$google_profile = get_the_author_meta( 'google_profile' );
if ( $google_profile ) {
echo '<a href="' . $google_profile . '" rel="me">Google Profile</a>';
}
?>