Frame frameset tags using a plurality of pages on the same page in the synthesis of

top.html main elements:

<body>
		<span style="color: red; font-family: '楷体';font-size: 15px;">top.html</span><br/>
		这是上框架(Section A)
	</body>

main.html main elements:

<body>
		<span style="color: blue; font-family: 'estrangelo edessa'; font-size: 20px;">mian.html</span><br/>(Sction C)
	</body>

treemenu.html main elements:

<body>
		treemenu.html<br/>(Section B)
	</body>

frame.html content:

<!DOCTYPE html>
<html>
	<frameset rows="20%,80%" border="2">
		<frame src="top.html" noresize scrolling="no" name="top"></frame>
		<frameset cols="30%,70%">
			<frame src="treemenu.html" noresize="noresize" scrolling="no" name="treemenu"/>
			<frame src="mian.html" noresize="noresize" scrolling="no" name="mian" />
		</frameset>
	</frameset>
</html>

Run Results:
Here Insert Picture Description
frameset can be nested, can be constructed of different types of pages, border label that is introduced into the other pages and src.

Published 101 original articles · won praise 49 · views 10000 +

Guess you like

Origin blog.csdn.net/Austin_/article/details/101313099