Reputation: 13
I'm trying to add target _blank with keeping link title?
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section">Visit our HTML Tutorial</a>
Upvotes: 0
Views: 116
Reputation: 310983
title
s and target
s aren't mutually exclusive - just add the target in there:
<a href="https://www.w3schools.com/html/" title="Go to W3Schools HTML section" target="_blank">Visit our HTML Tutorial</a>
Upvotes: 1