zoukankan      html  css  js  c++  java
  • 01-HTML的head标签学习.html

    <html>
        <head>
            <!--head标签中主要配置浏览器的配置信息-->
            <title>HTML学习</title><!--网页标题标签:告诉浏览器使用什么标题显示网页-->
            <!--<meta  charset="utf-8"/>--><!--网页解析编码格式配置(HTML5):告诉浏览器使用指定的编码格式解析文档-->
            <meta http-equiv="content-type" content="text/html;charset=utf-8"/><!--HTML4:文档编码格式设置-->
    
    
            <!--
                了解:
                    关键字
                    网页描述
                    作者
                作用:提升网页在浏览器中的搜索概率.
            -->
            <meta name="keywords" content="HTML,SXT,张老师,506"/><!--网页关键字-->
            <meta name="description" content="本网页上是关于HTML的head标签学习的,特别棒,6666."/><!--网页描述-->
            <meta name="author" content="张老师"/><!--网页作者-->
            <meta  http-equiv="refresh" content="5;url=http://www.baidu.com"/><!--网页自动跳转-->
        </head>
        <body>
            this is my first html
        </body>
    </html>
  • 相关阅读:
    POJ 2486
    奇怪的电梯
    穿越泥地(mud)
    救援行动(save)
    As Fast As Possible
    Connecting Universities
    They Are Everywhere
    Cells Not Under Attack
    吃饭
    花店橱窗(flower)
  • 原文地址:https://www.cnblogs.com/wcyMiracle/p/12411008.html
Copyright © 2011-2022 走看看