I would like to click on a link and open it inside a div on my page.
Here's the Stackblitz!
<div class="container">
<ol>
<li>
<a href="www.company.com/projects">projects</a>
</li>
<li>
<a href="www.company.com/tasks">tasks</a>
</li>
<li>
<a href="www.company.com/notifications">notifications</a>
</li>
<li>
<a href="www.company.com/overview">overview</a>
</li>
</ol>
</div>
When a link is clicked, the page should open within the container div, without the address bar.
UPDATE - If these links were internal to the company, would an I frame still be the right way to go?