Use the href property to create a link (or hyperlink) to another document.
Use the name or id attribute to create a bookmark in the document (that is, you can create a link to a d
Use the href property to create a link (or hyperlink) to another document.
Use the name or id attribute to create a bookmark in the document (that is, you can create a link to a document fragment).
The most important attribute of the<a> element is the href attribute, which specifies the target of the link.
Pseudo-class selector includes:
: link indicates a link that has not been visited.
: Visited means visited link.
: Hover indicates that the mouse hovers over the link.
: The activity represents the selected link.
In CSS definition, a:hover must be placed after a:link and a:visited to be effective.
In CSS definition, a:active must be placed after a:hover to be effective.
Pseudo-class names are case-insensitive.