How to get User Avatar Image with link to Author and User name in Html Title tag?

My god 😛

It was as simple as html tags, I just didn’t know the correct wordpress functions to use.

Here it go, for future reference:

<a href="https://wordpress.stackexchange.com/questions/305561/<?php echo get_author_posts_url( get_the_author_meta("ID' ), get_the_author_meta( 'user_nicename' ) ); ?>">
<img src="<?php echo get_avatar_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php echo get_the_author(); ?>">
</img></a>