How to redirect a Link to a new tab in contact form 7?

You got it right,

<a target="_blank" href="https://google.com">Google</a>

The _blank directive opens the link in a New window/tab depending on the browser setting. This is only way to achieve your redirect in a new tab, but is entirely dependent on the user’s browser setting over which you have no control.

Anyhow, it’s not recommended to open pdf in a new window/tab.