24 March 2011
no comments :(
Someone asked me before ho can i wrap a text link and make it open in a new page instead of the same page so just wanted to give a quick answer for that.
Links are specified in HTML using the tag.
it looks something like this:
|
1 |
<a href="url">Link text</a> |
The href attribute specifies the destination of a link.
|
1 |
<a href="http://flashsolver.com/">Visit FlashSolver</a> |
which will display like this:
Visit FlashSolver
HTML Links – The target Attribute
The target attribute specifies where to open the linked document.
The example below will open the linked document in a new browser window:
|
1 |
<a href="http://flashsolver.com/" target="_blank">Visit FlashSolver!!</a> |