Link Has Href

April 3, 2023 ยท View on GitHub

Rule Details

An <a> element that has an href attribute represents a hyperlink (a hypertext anchor) labeled by its contents. Links, <a> elements, should go somewhere, you probably want to use a <button> instead.

Resources

Examples

Incorrect code for this rule ๐Ÿ‘Ž

<!-- incorrect -->
<a>Go to GitHub</a>

Correct code for this rule ๐Ÿ‘

<!-- correct -->
<a href='https://github.com/'>Go to GitHub</a>