How to make a footer tag have and id attribute

<a href="#footer">Jump to Bottom</a>

<h2 id="footer">footer</h2>

it is still complaining that the footer tag should have an id attribute set to footer. Please how do i effect this?

<h2 id="footer">footer</h2>

This is an h2 element, not a footer element.

<h2 id="footer">footer</h2>```
so what should to pass this stage please?

I’m assuming this is the challenge you’re having trouble with.

You’re on the right track! You attached the id “footer” to the h2 element, not the footer element as Ariel stated above.

Hint: Look for the word “footer” enclosed in < > brackets as these usually indicate elements that you can then attach attributes to such as id.