Home >Web Front-end >HTML Tutorial >html: Where should the
Looks like this:
<frameset ……> <frame……略> </frameset> <noframes><body> </body> </noframes></html>。 还是应该这样?<frameset cols="25%,*"> <frame src="menu.htm" scrolling="no" name="Left"> <frame src="page1.htm" scrolling="auto" name="Main"> <noframes> <body> <p>对不起,您的浏览器不支持“帧”!</p> </body> </noframes> </frameset>
Frame The 6c04bd5ca3fcae76e30b72ad730ca86d tag is not required in the page, and the f900b4fc197b16ab214eecf015bb6bd2 tag does not include the 37f861bd36cef5b6406eba87d20a5bab tag. The specific writing method is as follows:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>页面名称</title> </head> <FRAMESET border=0 name=main rows=64,* frameBorder=no> <FRAME name=topFrame src="frame_top.html" > <FRAME name=mainFrame src="frame_main.html" > </FRAMESET> <noframes>对不起,您的浏览器不支持“框架页”!</noframes> </HTML>rrree
The above is the detailed content of html: Where should the