【HTML】4.框架标签

  • 框架标签
    • 框架标签不可以放到之间,一般为了代码的可读性,会到和之间。
    • 当框架大小不想被鼠标拖动而改变时,可以在frame标签中加入noresize属性,这个属性没有属性值,称为标记属性,加上就为固定。标记属性的属性值就是自身,如:noresize=”noresize”;
  • 练习:
    【HTML】4.框架标签_第1张图片

  • 主页面

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>我的页面title>
head>


<frameset rows="20%,*">
    
    <frame src="1.html" noresize="noresize"/>
    
    <frameset cols="30%,*">
        <frame src="2.html" name="left" noresize="noresize"/>
        <frame src="3.html" name="right" noresize="noresize"/>
    frameset>
frameset>

<body>
body>
html>
  • 1.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
    <h1>我的网站LOGOLh1>
body>
html>
  • 2.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
    <dl>
        <dt>新闻链接dt>
            <dd><a href="../Href.html" target="right">娱乐新闻a>dd>
            <dd><a href="">军事新闻a>dd>
            <dd><a href="">科技新闻a>dd>
        <dt>论坛帖子dt>
            <dd><a href="../MyHtml.html" target="right">技术论坛a>dd>
            <dd><a href="">军事论坛a>dd>
            <dd><a href="">科技论坛a>dd>
    dl>   
body>
html>
  • 3.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title heretitle>
head>
<body>
    <h1>显示列表内容h1>
body>
html>

【HTML】4.框架标签_第2张图片

  • 画中画标签: