Skip to main content

Link

Overview

A link is an element which allows for the creation of a hyperlink pointing to a specific url. This link element can additionally have an optional title attribute. Links are represented by <a>.

Example Syntax

[link](https://example.com)

[link](https://example.com "This is a link title")
<p>
<a href="https://example.com">link</a>
</p>
<p>
<a href="https://example.com" title="This is a link title">link</a>
</p>