+ 4
html
how do i create a link in such a way that when i click on it opens
4 odpowiedzi
+ 5
<a href="put the link here">Click here</a>
+ 4
Additional to Satnam Singh's answer,
The taget attribute:
Opens new window:
<a href="www.sololearn.com" target="_blank">click here</a>
Opens in the same frame:
<a href="www.sololearn.com" target="_self">click here</a>
Opens in parent frame:
<a href="www.sololearn.com" target="_parent">click here</a>
Opens in full body:
<a href="www.sololearn.com" target="_top">click here</a>
+ 1
use anchor tag like
<a href="link">click here </a>
- 1
sure dude