英[freɪm] 美[frem]

n.Frame; border; glasses frame; organization

vt.Frame; design; express; make suitable for (a special purpose)

adj. With a wooden frame, with a frame

Third person singular: frames Plural: frames Present participle: framing Past tense: framed Past participle: framed

html frame tag syntax

Function: Define a specific window (frame) in the frameset.

Note: Each frame in the frameset can set different properties, such as border, scrolling, noresize, etc.

Note: If you wish to validate pages containing frames, make sure the doctype is set to "Frameset DTD". You cannot use the <body></body> tag with the <frameset></frameset> tag. However, if you need to add a <noframes> tag for browsers that don't support frames, be sure to place the tag within the <body></body> tag!

html frame tag example

<html>

<frameset cols="25%,50%,25%">

  <frame src="http://www.php.cn/example/html/frame_a.html">
  <frame src="http://www.php.cn/example/html/frame_b.html">
  <frame src="http://www.php.cn/example/html/frame_c.html">

</frameset>

</html>