html nav code example
Example 1: 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>
Example 2: what is in html
<nav>
<a href="/html/">HTML</a> |
<a href="/css/">CSS</a> |
<a href="/js/">JavaScript</a> |
<a href="/python/">Python</a>
</nav>