如何制作导航框架。
导航框架包含一个将第二个框架作为目标的链接列表。名为 "contents.htm" 的文件包含三个链接。
<html>
<frameset cols="120,*">
<frame src="/example/html/html_contents.html">
<frame src="/example/html/frame_a.html"
name="showframe">
</frameset>
</html>
/example/html/html_contents.html
<html>
<body>
<a href ="/example/html/frame_a.html" target ="showframe">Frame a</a><br>
<a href ="/example/html/frame_b.html" target ="showframe">Frame b</a><br>
<a href ="/example/html/frame_c.html" target ="showframe">Frame c</a>
</body>
</html>
/example/html/frame_a.html
<html>
<body bgcolor="#8F8FBD">
<h3>Frame A</h3>
</body>
</html>