HTML COURSE โ€ข LESSON 22

HTML IDs

The id attribute gives one HTML element a unique identifier.

Add an ID

ID Attribute
<h1 id="main-title">

EDUHUB Code Hub

</h1>

Style an ID

ID CSS
<style>

#main-title {

color: cyan;

font-size: 45px;

}

</style>

Link to an ID

IDs can be used to create links to sections on the same page.

Page Section Link
<a href="#contact">

Go to Contact

</a>

<h2 id="contact">

Contact Us

</h2>
โš  Important

Each ID should be unique within the same HTML page.

โšก EDUHUB Live HTML Editor

LIVE PREVIEW