Example
The href attribute specifies the link's destination:
<a href="http://www.w3ii.com">Visit w3ii</a>
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The href attribute specifies the URL of the page the link goes to.
If the href attribute is not present, the <a> tag is not a hyperlink.
Browser Support
Attribute | |||||
---|---|---|---|---|---|
href | Yes | Yes | Yes | Yes | Yes |
Syntax
<a href="URL">
Attribute Values
Value | Description |
---|---|
URL | The URL of the link. Possible values:
|
More Examples
Example
Link to an element with a specified id within a page (the name attribute is not supported in HTML5):
<a href="#top">Go to top</a>
Try it Yourself »
Example
Link to an email address with a specified subject (will only work if you have mail installed):
<a href="mailto:[email protected]?Subject=Hello%20again">Send mail!</a>
Try it Yourself »
Example
Link to multiple email addresses with a specified subject and a specified message:
<a
href="mailto:[email protected][email protected]&[email protected]
&subject=Summer%20Party&body=You%20are%20invited%20to%20a%20big%20summer%20party!">Send
mail!</a>
Try it Yourself »
Example
Link to a JavaScript:
<a href="javascript:alert('Hello World!');">Execute JavaScript</a>
Try it Yourself »