frame

The obsolete <frame> element displayed a separate document inside a <frameset>. It is not part of modern HTML and should not be used for new sites.

What you will learn

Historical syntax

<!-- Historical example: do not use for new work. -->
<frameset cols="25%,75%">
  <frame src="menu.html" title="Menu">
  <frame src="home.html" title="Content">
</frameset>

This model split a browser window into independently scrolling documents. It created problems with history, bookmarking, responsive layouts, search indexing, printing, and assistive technology.

Choose a modern alternative

Do not use an iframe merely to simulate a page layout. If you embed one, provide a useful title, consider sandbox, and ensure the embedded content is usable at small widths.

Related pages