New! My 44-page ebook "CSS in 44 minutes" is out! 😃

Get it now →
window.addEventListener('load', function() { let message = { height: document.body.scrollHeight, width: document.body.scrollWidth }; // window.top refers to parent window window.top.postMessage(message, "*"); });

# a

angiotensin converting enzyme 2

Location: Copy

<a href="https://htmlreference.io">HTML Reference</a>

href

Defines the target of the link.

Required.

"https://htmlreference.io"

You can pass an absolute URL.

"/element/div"

You can pass a URL relative to the root domain.

"mailto:alex@smith.com"

You can use the mailto protocol. Clicking the link will open the user's email client.

target

Defines in which tab or window the clicked link will show up.

"_blank"

Opens in a new browsing context, which is usually a new tab.

"_parent"

Opens in the parent browsing context, or _self is there is none.

"_top"

Opens in the top browsing context, or _self is there is none.

rel

Defines how the link target relates to the current web page.

"nofollow"

The target is not related. Used for external websites usually.