HTML Tutorial





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
HTML Basic
Introduction
How To
HTML Tags
html, head, body
Text Manipulation
IMAGES
Special Effects
Using Tables
Forms
Other Topics
 


ADVANCED HTML
Introduction
Media
Meta Tag
Frame tags
Fieldset
Tooltip
DTD
Image tags
Subscript & Superscript
Bullet styles
Canvas
Other tags
Ask Your Doubts
More about HTML
Feedback
 




LINK Handling Code


Tutorials Html

Topic

I want to create links that will open the pages in new window?
How can I link to website (say hioxindia.com)?



Explanation

Opening Link in New Page:

Many a times we want to open the links in new window.
It's simple.
Use the attribute "target=_blank" inside the tag "<a>".

Example Code:
<a href="test1.html" target="_blank"> Click to test1.html </a>
Result:
Click to test1.html

Click on the link to test. It will open the page in new window.



Linking to a external website:

The tag is same as other, only thing is that we have to use "http://".
So to link to withfriendship.com we have to use "http://www.withfriendship.com".

Example Code:
<a href="http://www.withfriendship.com"> With FriendShip </a>
Result:
With FriendShip

This will take you to the website.




Other Links

web hosting