0
In my first HTML frame exercise, I created a document made up of two frames where each one is another HTML document, which is in the same folder as the initial document. The HTML of frames work individually, but when you put them in frames and run, nothing happens. Follow 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>
Are you learning something obsolete that you don’t use anymore? I don’t think it’s worth it.
– Sam
Actually dvd, this is the first class, I think just to learn the basic commands. In the third we will start to see html 5.
– Lucas Pletsch