In my first exercise in HTML frames, I created a document consisting of two frames in which each one is another HTML document, which is in the same folder as the initial document. The HTML of the frames work individually, but when placed in frames and executed, nothing happens. Here is the code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
"http://www.w3.org/TR/REC-html40/strict.dtd">
<HTML>
<HEAD>
<TITLE>Aprendendo Frames</TITLE>
</HEAD>
<BODY>
<frameset rows="50%, 50%">
<frame src="primeirohtml.htm" name="Parte superior">
<frame src="SegundoHtml.htm" name="Parte inferior">
</frameset>
</BODY>
</HTML>