My <nav>
element contains the buttons that should lead to different pages I would like to open in the <section>
part of the same site. But how do I specifically tell the page to load the second page in the place provided? In short: how to open a page inside a page.
In the tutorial they stop at this point:
<div id="navigation">
<ul>
<li><a href="#">Jump</a></li>
<li><a href="#">Map</a></li>
<li><a href="#">SHOP</a></li>
</ul>
</div>
So, when I press the Jump button I would like a specific html file open in the <section>
element.
How do I do this?
Thank you!