HTML < frameset > Tag - Learn About Website | DaddyFile

0

HTML <frameset> Tag. Not Supported in HTML5.


Example

A simple three-framed page:

<frameset cols="25%,*,25%">
  <frame src="frame_a.htm">
  <frame src="frame_b.htm">
  <frame src="frame_c.htm">
</frameset>

Definition and Usage

The <frameset> tag is not supported in HTML5.
The <frameset> tag defines a frameset.
The <frameset> element holds one or more <frame> elements. Each <frame> element can hold a separate document.
The <frameset> element specifies HOW MANY columns or rows there will be in the frameset, and HOW MUCH percentage/pixels of space will occupy each of them.
Note: If you want to validate a page containing frames, be sure the <!DOCTYPE> is set to either "HTML Frameset DTD" or "XHTML Frameset DTD".

Differences Between HTML 4.01 and HTML5

The <frameset> tag is not supported in HTML5.

Differences Between HTML and XHTML

NONE.

Post a Comment

 
Top