HTML COURSE โ€ข LESSON 14

HTML Links

HTML links allow users to move from one page or website to another.

The Anchor Element

Links are created using the <a> element.

Basic Link
<a href="https://eduhubsl.com">
    Visit EDUHUB
</a>

Open a Link in a New Tab

Use target="_blank" to open the link in a new browser tab.

New Tab Link
<a
href="https://eduhubsl.com"
target="_blank"
>
    Open EDUHUB
</a>

Link to Another Page

Internal Page Link
<a href="about.html">
    About Us
</a>

Use an Image as a Link

Image Link
<a href="index.html">

    <img
    src="logo.png"
    alt="EDUHUB Logo"
    >

</a>

Email Links

Email Link
<a href="mailto:example@email.com">
    Send Email
</a>

โšก EDUHUB Live HTML Editor

LIVE PREVIEW