How to add footer tag so that id attribute is set to "footer"? Help me

An h2 is a header tag it should not have an id of footer.

You need a footer tag with an id of footer.

https://www.w3schools.com/tags/tag_footer.asp

2 Likes

Please don’t post images here instead of that put your code and link to the challenge.
And you need to remove the id attribute from h2 tag on line 9, and put the attribute into the footer tag
like

<footer id ="footer"> Your code</footer>
1 Like

in html: <footer id="footer">text</footer>