+ 1
How can i create a link that direct me to the second page
2 Antworten
0
the code goes like this
<a href="link" target=_blank>Click me</a>
inside the href u write the link where u want to direct the user. Secondly, the
target attribute is optional if u want the link to open in the new page u can use it
Hope this helps!!
+ 2
<a href="second_page.html">Click me</a>