Answers for "navigate to section of page html url"

3

html a link to section on page

<!--1. create link tag with href containing "[#][section to direct] with name-->
<a href = #about-section>About</a>

<!--2. create identifier for the section you would like to navigate to with "id" = name-->
<section id = "about-section"> <h1>This is the about section</h1> </section>
Posted by: Guest on January-08-2021
2

go to id html

<a href="#sushi">Sushi</a>
<a href="#bbq">BBQ</a>

Sample section:
<div id='sushi'><a name='sushi'></a></div>
<div id='bbq'><a name='bbq'></a></div>
Posted by: Guest on December-08-2020

Code answers related to "navigate to section of page html url"

Browse Popular Code Answers by Language