index.htm
<html>
<head><title>框架</title>
<frameset rows="20%,*">
<frame src="a.htm" name="topFrame">
<frameset cols="20%,*">
<frame src="b.htm" name="leftFrame">
<frameset rows="50%,*">
<frame src="c.htm" name="main1Frame">
<frame src="c.htm" name="main2Frame">
</frameset>
</frameset>
</frameset>
</head>
</html>
a.htm
<html>
<head><title>框架页面a</title>
</head>
<body>
<center>欢迎进入我的个人空间</center>
</body>
</html>
b.htm
<html>
<head><title>框架页面b</title>
</head>
<body>
<center>
<pre>
第一页 <a href="c1.htm" target="main1Frame">心灵之约</a>
第二页 <a href="c2.htm" target="main2Frame">爱心使者</a>
第三页 <a href="c3.htm" target="main1Frame">天堂在哪</a>
第四页 <a href="c4.htm" target="main2Frame">人性弱点</a>
第五页 <a href="c5.htm" target="main1Frame">哪去生活</a>
</pre>
</center>
</body>
c.htm
<html>
<head><title>框架页面c</title>
</head>
<body>
<center>一件黑色毛衣 二个人的回忆</center>
</body>
</html>
c1.htm
<html>
<head><title>框架页面c1</title>
</head>
<body>
<center>雨过之后 更难忘记
忘记我还爱你</center>
</body>
</html>
c2.htm
<html>
<head><title>框架页面c2</title>
</head>
<body>
<center>你不用在意 流泪也只是刚好而已
我早已经待在谷底</center>
</body>
</html>
c3.htm
<html>
<head><title>框架页面c3</title>
</head>
<body>
<center>我知道不能再留住你 也知道不能没有骨气
感激你 让我拥有秋天的美丽</center>
</body>
</html>
c4.htm
<html>
<head><title>框架页面c4</title>
</head>
<body>
<center>看着那白色的蜻蜓 在空中忘了前进
还能不能 重新编织 脑海中起毛球的记忆</center>
</body>
</html>
c5.htm
<html>
<head><title>框架页面c5</title>
</head>
<body>
<center><pre>再说我爱你 可能雨也不会停
黑色毛衣 藏在哪里 就让回忆永远停在那里</pre></center>
</body>
</html>
评论0