Advertisement

Responsive Advertisement

Links And Navigation

Navigation, Internal and External Links

Navigation, Internal and External Links

This page explains how to use navigation, internal links, and external links in HTML.

Examples of Internal and External Links

Internal Link Example:

Let's say you want to create an internal link that directs users to another section of the same page:

<a href="#external-links">Go to External Links</a>
        

This link will direct the user to the "External Links" section on the same page.

External Link Example:

If you want to create a link to an external website (like Wikipedia), you can use the following code:

<a href="https://www.wikipedia.org" target="_blank">Visit Wikipedia</a>
        

This will open the Wikipedia page in a new tab.

© 2024 Link Examples | All Rights Reserved

Post a Comment

0 Comments