Good morning.
I would like to know how I should proceed so that, when I include hyperlinks in a post, they open in a new tab instead of the tab where my blog is displayed.
Thx
For this, you’ll need to use plain HTML, and include the target="_blank"
attribute. For example:
<a href="https://your.link" target="_blank">Link text here</a>
Thanks. That’s what I thought.
1 Like