html in page navigation

Solutions on MaxInterview for html in page navigation by the best coders in the world

showing results for - "html in page navigation"
Dylan
18 Jan 2019
1Uses HTML's anchors:
2<a href="#anch_start">INTRO</a>
3<a href="#anch_end">ENDING</a>
4
5'href' uses 'id' to find these segments:
6<div class="intro"  id="anch_start"></div> 
7<div class="epic_ending"  id="anch_end"></div>