meta标签是什么

洪安顺
2023-12-01

meta标签是什么

  • meta即元数据(matadata)
  • meta是HTML语言head区的一个辅助性标签,位于html文档头部的head标签和title标签,不包含任何内容.
  • meta共有两个属性,http-equivname属性

meta标签的作用

  • 针对搜索引擎和更新频度的描述 关键词 文件的最后修改时间 作者 以及其他元数据
  • 元数据可以浏览器使用 例如搜索引擎(关键字)

meta标签的使用

  • 关键字 (定义文档关键词 用于搜索引擎)
<meta name="keywords" content="html, css, javasript">
  • web页面描述

    <meta name="desciption" content="meta descirption">
    
  • 定义页面作者

    <meta name="author" content="codeacg">
    
  • 定时刷新页面

    <meta http-equiv="refresh" content="30">
    
  • 定义文档的字符编码

    <meta charset="utf-8">
    
  • 定义与http-equivname属性相关的元信息

    <meta name="desciption" content="meta descirption">
    
  • http-equiv它可以向浏览器传回一些有用的信息,以帮助正确和精确地显示网页内容,与之对应的属性值为content,content中的内容其实就是各个参数的变量值。

    <meta http-equiv="参数" content="参数变量值">
    

    X-UA-Compatible是自从IE8新加的一个设置,对于IE8以下的浏览器是不识别的。 通过在meta中设置X-UA-Compatible的值,可以指定网页的兼容性模式设置

    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    

    format-detection格式识别

    <!--telephone=no禁止把数字转化为拨号链接-->
    <meta name="format-detection" content="telephone=no">
    <!--email=no告诉设备不识别邮箱,点击之后不自动发送-->
    <meta name="format-detection" content="email=no">
    <!--adress=no禁止跳转至地图-->
    <meta name="format-detection" content="adress=no">
    
 类似资料: