html The frame tag is used to define a specific window (frame) in the frameset. Each frame in the frameset can set different attributes, such as border, scrolling, noresize, etc.
#html How to use frame tag?
Function: Define a specific window (frame) in the frameset.
Note: Each frame in the frameset can set different attributes, 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
tag with the tag. However, if you need to add ahtml 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>
The above is the detailed content of How to use html frame tag. For more information, please follow other related articles on the PHP Chinese website!