HTML详细解释14

2013-06-18 07:09:30 -0400
下边是一个综合示例:
例8 帧标志的综合示例
主文档: <html>
<head>
<title>帧标志的综合示例</title>
</head>
<frameset cols="25%,*">
<frame src="menu.htm" scrolling="no" name="Left"> <frame src="page1.htm" scrolling="auto" name="Main"> <noframes>
<body>
<p>对不起,您的浏览器不支持“帧”!</p> </body> </noframes> </frameset> </html>
menu.htm <html>
<head>
<title>目录</title> </head>
第12/16页
<body>
<p><font color="#FF0000">目录</font></p>
<p><a href="page1.htm" target="Main">链接到第一页</a></p> <p><a href="page2.htm" target="Main">链接到第二页</a></p> </body> </html>
page1.htm <html>
<head>
<title>第一页</title> </head>
<body>
<p align="center"><font color="#8000FF">这是第一页!</font></p> </body> </html>
page2.htm <html>
<head>
<title>第二页</title>
</head> <body>
<p align="center"><font color="#FF0080">这是第二页!</font></p> </body>
</html>
«Newer      Older»
Comment:
Name:

Back to home

Subscribe | Register | Login | N