导航

1 框架标签

标签名 功能和语义 属性 单标签还是双标签
iframe 引入其他文件到当前页面 src:文件地址
frameborder:是否有边框,0比表示没有边框,非0表示存在边框
width:设置宽度
height:设置高度
双标签
    <!-- 
        iframe与target标签的组合使用
        target的属性值指向 iframe的name属性值
    -->
    <a href="https://news.163.com" target="myiframe">网易新闻</a>
    <a href="./01-引入其他文件.html" target="myiframe">本地文件</a>

    <hr>
    <form action="https://www.so.com/s" target="myiframe">
        <input type="text" name="q" id="">
        <button>搜索</button>
    </form>
    <hr>
    <iframe src="" width="100%" height="600px" name="myiframe"></iframe>

2 HTML 字符实体

空格    &nbsp;
<       &lt;
>       &gt;
&       &amp;

©       &copy;
¥       &yen;
x       &times;
÷       &divide;

3 HTML 全局属性

name    设置名字
title   设置提示文字
lang    设置语言,值:cn、en
id      设置唯一标识
class   设置类名,CSS中使用
style   设置CSS样式

4 meta 元信息

    <!-- 网页的字符集编码 -->
    <meta charset="UTF-8">
    <meta http-equiv="content-type" content="text/html;charset=utf-8">

    <!-- 网页关键字 -->
    <meta name="keywords" content="8-12个以英文逗号隔开的单词/词语">

    <!-- 网页描述信息 -->
    <meta name="description" content="80字以内的一段话,与网站内容相关">

    <!-- 网页刷新信息:(10秒后跳转到百度页面) -->
    <meta http-equiv="refresh" content="10;url=https://www.baidu.com">

content 属性定义与 http-equiv 属性或 name 属性相关的元信息
1. name 属性把 content 属性关联到一个名称
2. http-equiv 把 content 属性关联到 HTTP 头部信息