HTML a
From w3cyberlearnings
Contents |
HTML hyperlink
<a> defines an anchor to create a link to another document or to create a bookmarsk inside a document.
Syntax
<a href="http://www.w3cyberlearnings.com">W3cyberlearnings!<a>
Attributes
Value | Description |
---|---|
_blank | Opens the link in a new tab or window |
_self | Opens the link in the same frame (default) |
_parent | Opens the link in the parent frame |
_top | Opens the link in the full body of the window |
framename | Opens the link in the specific frame name. |
Example TRY-IT
<a target="_blank" href="http://www.w3cyberlearnings.com">W3cyberlearnings!<a>