HTML Link Generator

Link Settings

Generated HTML Code

<a href="https://example.com" target="_blank" rel="noopener noreferrer" title="Go to Example Website">Visit Example Website</a>

Link Preview

About HTML Link Attributes

target="_blank" β€” Opens link in a new tab. Always pair with rel="noopener noreferrer" to prevent the new page from accessing the parent via window.opener.

rel="nofollow" β€” Tells search engines not to follow this link or pass authority. Essential for sponsored links, user-generated content, and untrusted external links.

rel="noopener" β€” Prevents the new page from accessing window.opener, protecting against reverse tabnapping attacks.

rel="noreferrer" β€” Prevents the browser from sending the HTTP Referer header when navigating to the linked page.

title β€” Provides additional context as a tooltip on hover, improving accessibility and user experience.