|
发表于 2020-3-21 13:00:01
|
显示全部楼层
---example.html----
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<frameset rows="*" cols="184*,798*" framespacing="0" frameborder="no" border="1">
<frame src="left.html" name="leftFrame" id="leftFrame" title="left" />
<frame src="right.html" name="mainFrame" id="mainFrame" title="right" />
</frameset>
<noframes><body>
</body>
</noframes></html>
-------left.html----
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body bgcolor="#FFFFCC">
<p><a href="example1.htm" target="mainFrame">example1.htm</a></p>
<p><a href="example2.htm" target="mainFrame">example2.htm</a></p>
<p><a href="example3.htm" target="mainFrame">example3.htm</a></p>
<p><a href="example4.htm" target="mainFrame">example4.htm</a></p>
<p><a href="example5.htm" target="mainFrame">example5.htm</a></p>
<p><a href="example6.htm" target="mainFrame">example6.htm</a></p>
<p><a href="example7.htm" target="mainFrame">example7.htm</a></p>
<p><a href="example8.htm" target="mainFrame">example8.htm</a></p>
<p><a href="right.html" target="mainFrame">HOME</a></p>
<p><a href="right.html" target="_self">target=_self</a></p>
<p><a href="right.html" target="_top">target=_top</a></p>
</body>
</html>
------right.html---------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
.STYLE1 {
font-size: 36px;
font-family: "宋体";
color: #FF0000;
font-weight: bold;
}
-->
</style>
</head>
<body>
<div align="center" class="STYLE1">Welcome</div>
</body>
</html>
|
|