Link to internal sections lesson 5

I cannot seem to understand why I am not progressing from lesson 5 on HTML. My code looks like this —>
(

Jump to Bottom

)

but apparently I have not set an id attribute to ‘footer’.

Help please?

if you search the forum you will find many answers to this exact question.

to set an id on an element , you just add “id=something” to the element.
Eg. set an id on the following element

<p>my element paragraph</p>

then becomes

<p id="myid">my element paragraph</p>