As an example of how we can use ID's, they can be used to link to a section on the same page. In order to link to a part of the same page, you can add an ID attribute to the element you want to reference (for example, <h1 id="top">), and in your anchor element, the value of the href attribute will be "#top" (<a href="#top">skip to top</a>). More complete code is as follows:
<h1 id="top"> Title of My Site </h1>
<p> a long passage of text, or many elements </p>
<a href="#top"> jump to beginning </a>Note: It is important that no two elements on the same page have the same id attribute value (otherwise the value is no longer unique). Also, the value of an element ID should start with a letter or an underscore (not a number or any other character).
In the following example, key paragraphs have a class attribute whose value is important:
<p class="important"> some important text, blah, blah, blah. </p>
<p> some less important text text, blah, blah, blah. </p>
<p class="important"> some more important text, blah, blah, blah. </p>