<!--The code on this page is simply the code for iframes which is shown below--> <!-- Code for the first iframe--> < iframe name="iframe1" src="iframeExample.htm" align="top" height="150" width="95%" hspace="10" vspace="10" align="middle">< p>If you can see this, your browser does not support iframes! < /iframe><!--Code for the second iframe--> < iframe name="iframe2" src="index.html" align="top" height="200" width="95%" hspace="10" vspace="10" align="middle">If you can see this, your browser does not support iframes! < /iframe><!--The first iframe loads the page in the link in the second iframe because it has the following code in its links--> < a href="anchors.htm" target="iframe2">What's in a name - Anchors < /a>< br />< a href="FormSelect.htm" target="iframe2">Menus in Forms < /a>< br />< a href="../JavaScript/freeEditor.htm" target="iframe2">free java script editor to help create code. < /a>< br /> |