Answers for "how to navigate inside html page"

7

link to section on page html

<!-- #top is the ID of the div where u wanna link to -->
<a href="#top">Go back to the top!</a>

<div id="top"></div>
Posted by: Guest on June-19-2020
0

html in page navigation

Uses HTML's anchors:
<a href="#anch_start">INTRO</a>
<a href="#anch_end">ENDING</a>

'href' uses 'id' to find these segments:
<div class="intro"  id="anch_start"></div> 
<div class="epic_ending"  id="anch_end"></div>
Posted by: Guest on March-12-2020

Code answers related to "how to navigate inside html page"

Browse Popular Code Answers by Language