<!DOCTYPE html>
<html>
<head>
<title>HTML links Example</title>
</head>
<body>
<p>Click following link</p>
<a href="http://www.tutorialride.com/">Visit TutorialRide.com</a>
</body>
</html>
| Option | Description |
|---|---|
| _top | Opens the linked document in new window breaking all the frames. |
| _blank | Opens the linked document in new blank window. |
| _parent | Opens the linked document in the parent frame of the current document. |
| _self | Opens the linked document in the current frame. |
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
</head>
<body>
<p>Click any of the following links</p>
<a href="http://www.tutorialride.com/" target="_blank">Opens in New</a></br>
<a href="http://www.tutorialride.com/" target="_self">Opens in Self</a></br>
<a href="http://www.tutorialride.com/" target="_parent">Opens in Parent frame</a></br>
<a href="http://www.tutorialride.com/" target="_top">Opens in new window</a>
</body>
</html>

| Attribute | Description |
|---|---|
| link | Used to change the default color of the hyperlink. |
| alink | Used to change the default color of the active hyperlink. |
| vlink | Used to change the default color of the visited hyperlink. |
<!DOCTYPE html>
<html>
<head>
<title>Hyperlink Example</title>
</head>
<body link="#000080" alink="#54A250" vlink="#ff0000">
<p>Click on the following link</p>
<a href="http://www.tutorialride.com/" target="_blank">TutorialRide.com</a>
</body>
</html>
Click on the following link
TutorialRide.com