使用框架将面首先分成两个部分,上部分是一个图片,下部分又分为两个部分,左部分和右部分,左部分为超链接,转到右部分,右部分可显示四个页面,
左部分的代码为:
<body bgcolor="pink"> <a href="right1.html" target="right"> 丽江 </a><br/> <a href="right2.html" target="right"> 青藏 </a><br/> <a href="right3.html" target="right"> 烟台 </a><br/> <a href="right4.html" target="right"> 西安 </a> </body>
右部分的四个页面
第一个页面代码为:
<body bgcolor="silver"> 来丽江旅游吧 <img src="丽江.jpg" width=400px/> </body>
第二个页面代码为:
<body bgcolor="silver" > 来西藏旅游吧 <img src="西藏.jpg" width=400px/> </body>
第三个页面代码为:
<body bgcolor="silver"> 来烟台旅游吧 <img src="烟台.jpg" width=400px/> </body>
第四个页面代码为:
<body bgcolor="silver"> 来西安旅游吧 <img src="西安.jpg" width=400px/> </body>
上部代码为:
<body> <img src="travel.jpg" width=1366px height=200px/> </body>
总页面的代码为:
<frameset rows="20%, *" frameborder=0> <frame src="top.html" noresize scrolling="no"> <frameset cols="15%, *"> <frame src="left.html" noresize> <frame src="right1.html" name="right"> </frameset> </frameset>