When blogging, it can be important that when a visitor clocks on a
link, it opens in another window. This way your visitors can see what
you are referring to, yet they can continue to browse your blog. This
can also increase your amount of pageviews. The HTML code is quite
simple to add if your blog site doesn't have a box to check. The code is
as follows:
The code for a link is quite simple. The <a href designates the link command following by the link. The text after the carrot > is the text to display and the </a> closes the command.
<a href="http://mybraindownloaded.blogspot.com/" target="blank">My Brain Downloaded</a>
target="blank"
The code for a link is quite simple. The <a href designates the link command following by the link. The text after the carrot > is the text to display and the </a> closes the command.
<a href="http://mybraindownloaded.blogspot.com/">My Brain Downloaded</a>
In order to open a link in a new window, insert this code within the link code before the carrot > closing the link reference.
<a href="http://mybraindownloaded.blogspot.com/" target="blank">My Brain Downloaded</a>
No comments:
Post a Comment