Problem with footer in HTML5

Hi!! I’m By and my problem is this. I’m learning HTML5 and I have a problem in one of the activitys, the problem is what I don’t know what to put in lesson 11, I’m new to programming and I don’t know very well what I’m failing at. Please help!

ByGames

pleaswe include the challenge link and your post in your post, otherwise it’s not possible to help you, thank you


When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

Okey, It will take me a second wait. Thanks!

<a href #footer id ="https://www.freecatphotoapp.com" >Jump to Bottom</a>

I’ve been caught there, surely it’s wrong but I don’t know how to finish the exercise.

Can you please post all your code.


Challenge: https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/link-to-internal-sections-of-a-page-with-anchor-elements

The href value on the a element should match the id on the element you are linking to, minus the hash #.

Example:

<a href="#about">About</a>

<section id="about">
...content
</section>

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.