+ 1
How can I open another page by clicking on a text using Html???
For example,...when you click on something to open another page
3 Answers
+ 13
<a href="link" target="_blank">Link</a>
+ 1
if you want to open your link in a new tab in this tag<a> write down target="_blank"
but if you want to when you click on a text opent the page you want write the link in href and then write your text in <p></p> like this
<a href="www.google.com"><p>this is my text</p></a>
0
use link