Honestly, I just don't know how to do it. I want to access two sites from one html document. I need to have only one showing at a time, here is what I have so far.
<!DOCTYPE html>
<html>
<body>
<iframe src="http://www.creeperhost.net">
<p>The current browser does not support iframes, or there is a problem with the iframe source.</p>
<iframe src="http://cp.creeperhost.net">
<p>The current browser does not support iframes, or there is a problem with the iframe source.</p>
</iframe>
<input type="button" name="CreeperPanel" value="CreeperPanel"><br>
<input type="button" name="CreeperHost" value="CreeperHost"><br>
</body>
</html>
I want the iframe with the src="www.creeperhost.net" to show when I select the input button "CreeperHost", and vise versa for when I click on "CreeperPanel", to show only the src="cp.creeperhost.net". If you could, I would like to know how to instead of completly hiding the other window, make it smaller in the bottom right.