Stuck on link-to-internal-sections-of-a-page-with-anchor-elements

Cause I’m dumb apparently. I can’t figure out what this is asking me to do:

“The footer tag should have an id attribute set to “footer”.”

I have <footer>"footer"</footer>, which is obviously not right but that sounds like what it is instructing me to do. Can’t figure out what it actually wants.

When you enter a code block into the forum, precede it with a line of three backticks and follow it with a line of three backticks to make easier to read. See this post to find the backtick on your keyboard. The “preformatted text” tool in the editor (</>) will also add backticks around text.

markdown_Forums

An attribute is an addtion to at tag:

<footer></footer> is a tag or element

An attribute adds to this so say you wanted to add a class attribute:

<footer class="stuff"></footer>

You are asked to add an Id attribute.

1 Like