Search code examples
htmllabelhref

Move to the label in new page


I want to go to label in another page. I know that I can use

<a href="#top"> Top </a>

to move in one page to

<div name='top'> </div>

Can I use something like <a href="/newpage#top"> Top </a>

to move to the label in any other?(this example is not working)

Thank you in advance!


Solution

  • try this code below:

    <a href="/newpage.html#top">top</a>
    
    <div id="top" name="top"></div> 
    

    I have added id="top" to the div which calls name="top".