naser
naser

Reputation: 13

Add target=”_blank”

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

Answers (2)

Mureinik
Mureinik

Reputation: 310983

titles and targets 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

kenput3r
kenput3r

Reputation: 249

Just add target=“_blank” after your title attribute.

Upvotes: 0

Related Questions