Tell us what’s happening:
Describe your issue in detail here.
please where am i going wrong here?
Please post your code in the forum.
Here is how to post code in the forum
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 (’).
Hello @vahidmato,
It would be easier to help you if you could provide us more details about the code. Here, I guess you have an issue with the anchor into your page. Let me give you some elements.
A link should always be:
<a href="...">My link</a>
If you want to do an anchor with an element inside your page:
<a href="#myid">My link</a>
<!-- here some code and the content of your page -->
...
<footer id="myid">
<!-- footer content -->
</footer>
So look well the little part of code that you sent and compare with what I showed you just before:
Jump to Bottom>/a> <h2 id=“footer”
After, I am just guessing, your code would be good to understand what is the situation.
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.