美文网首页
前端基础一,头部信息meta

前端基础一,头部信息meta

作者: 努力学习的小白 | 来源:发表于2017-12-05 22:04 被阅读0次

    1.Doctype

    Doctype告诉浏览器使用什么样的html或xhtml规范来解析html文档

    2.Meta

    提供有关页面的元信息,如:页面编码、刷新、跳转、针对搜索引擎和更新频度的描述和关键词
    meta是一个自闭合标签,建议加上/

    2.1 页面编程(告诉浏览器,你是什么编码格式)
    < meta http-equiv="content-type" content="text/html;charset=utf-8" />

    2.2 关键字搜索
    <meta name="keywords" context="身高1米8,帅气,有钱" />

    2.3 刷新和跳转
    <meta http-equiv="Refresh" Content="5" /> 5秒后刷新
    <meta http-equiv="Refresh" Content="5;Url=http://www.jianshu.com/u/14140bf8f6c7 " /> 5秒后跳转

    2.4 描述(网站信息描述)
    <meta name="description" content="小白是一个非常帅气又完美的男生,比如我" />

    `长的帅.jpg

    3.X-UA-Compatible

    X-UA-Compatible兼容IE版本
    <meta http-equiv="X-UA-Compatible" content="IE=IE9;IE=IE8;IE=IE7;IE=IE6" />

    4.Title

    网页头部信息

    <!DOCTYPE html>
    <html lang="zn">
    <head>
        <meta http-equiv="content-type"  content="text/html;charset=utf-8" />
        <meta name="keyword" content="帅气,1米8,有钱" />
        <meta http-equiv="Refresh"  Content="5;Url=http://www.jianshu.com/u/14140bf8f6c7" />
        <meta name="description" content="小白是一个非常帅气又完美的男生,比如我" />
        <title>第一个网页</title>
    </head>
    <body>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:前端基础一,头部信息meta

          本文链接:https://www.haomeiwen.com/subject/fcrhixtx.html