I have a question about basic HTML knowledge that I find embarrassing
Is it possible to open or load a second page within my first page?
I want a menu button that will load the second page.
<li class="current"><a href="first.html" target = "myContent">About us</a></li>
In my first page, there is a section called "myContent," but when I try to open the second page, it doesn't work as expected (the page opens in a new window).
<div id="myContent" name="myContent" style="background-color:#EEEEEE;height:200px;width:800;float:left;"> </div>
What am I doing wrong? Thank you for your help!