About Lesson
HTML Frame
An HTML Frame divides the web page into separate sections, each with its own content and layout. Frames also allow you to create multiple independent windows within a single browser window. This can be useful for organizing large amounts of information or creating interactive applications where users can switch between different views without reloading the entire page.
Each frame is represented inside a frameset tag and looks like the following:
<frameset>
<frame name=”one” src=”one.html”>
<frame name=”two” src=”two.html”>
</frameset>