If you want a frame in a page, you should be using the
IFRAME element...
Just replace
- HTML: Select all
<frameset>
<frame name="framename">
frame content
</frame>
</frameset>
with something like
- HTML: Select all
<iframe src="foo.html" name="framename" width="400" height="500" scrolling="auto" frameborder="1">
[Your user agent does not support frames or is currently configured
not to display frames. However, you may visit
<a href="foo.html">the related document.</a>]
</iframe>