About 1081 letters
About 5 minutes
HTML links are marked up using the <a>
tag.
<a href="URL">Displayed content</a>
Example:
<a href="https://xplanc.org/primers">Primers 编程伙伴</a>
HTML Link
Clicking the above link will navigate the current browser tab to https://xplanc.org/primers. To open the link in a new tab, add the attribute target="_blank"
:
<a href="https://xplanc.org/primers" target="_blank">Primers 编程伙伴</a>
HTML Link
The link address can also be non-webpage addresses, such as email addresses. Clicking will open the mail client.
<a href="mailto://hubenchang0515@gmail.com">Contact</a>
HTML Email Link
Created in 5/16/2025
Updated in 5/21/2025