HTML——03:frame

例子:

main.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
		<title></title>
		
    </head>
    <body bgcolor="green">
       
    </body>
</html>

top.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body bgcolor="#FF7373">
<div>

</div>
</body>
</html>

major.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>Phone_shop</title>
	
	<frameset rows="10%,90%">
		<frame src="top.jsp"></frame>
		<frame src="main.jsp"></frame>
	</frameset>
</head>
<body>

</body>
</html>

猜你喜欢

转载自blog.csdn.net/qq_39964240/article/details/85174595