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.
<!-- incorrect -->
<a>Go to GitHub</a>
<!-- correct -->
<a href='https://github.com/'>Go to GitHub</a>