html frameset框架

来源:互联网 发布:淘宝客导购名称写什么 编辑:程序博客网 时间:2024/05/29 14:27

FrameDemo.html

<!DOCTYPE html>

<html>
    <head>
        <title>FrameDemo.html</title>

        <meta name="keywords" content="keyword1,keyword2,keyword3">
        <meta name="description" content="this is my page">
        <meta name="content-type" content="text/html; charset=GBK">

        <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

    </head>
    <!-- 框架  rows表示top占30行,cols表示下面俩分别占多少列
         frame表示窗体区域,属性name是给窗体取名字,为链接跳转做准备-->
    <frameset rows="30%,*">
        <frame src="top.html" name="top"/>
        <frameset cols="30%,*">
            <frame src="left.html" name="left"/>
            <frame src="right.html" name="right"/>
        </frameset>
    </frameset>
    <body></body>

</html>


top.html

<!DOCTYPE html>
<html>
  <head>
    <title>top.html</title>
    
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=GBK">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  </head>
 
  <body>
      <h1>这是网站的logo</h1>
  </body>

</html>

left.html

<!DOCTYPE html>
<html>
  <head>
    <title>top.html</title>
    
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=GBK">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  </head>
 
  <body>
      <!-- target表示用什么窗体打开
           ..表示上一目录-->
    <a href="../image.html" target="right">链接1</a>
    <a href="../list.html" target="right">链接2</a>
    <a href="../table.html" target="right">链接3</a>
  </body>
</html>


right.html

<!DOCTYPE html>
<html>
  <head>
    <title>top.html</title>
    
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=GBK">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  </head>
 
  <body>
      显示内容
  </body>
</html>





原创粉丝点击