I have an html page (firstpage.html) divided into two parts; one split on the left and one split on the right.
I would like to add the content of a second html page (secondpage.html) on the right split, then through the appropriate div.
For example if I have the div shown below:
<div hr class="horiz">
<div class="split left">
<div class="centered">
<!-- here is the code that "fills" the left split -->
</div>
</div>
<div class="split right">
<div class="centered">
<!--Here I would like to add the entire content of the secondpage.html html page -->
</div>
</div>