📌  相关文章
📜  如何使用 HTML 定义有关文档的信息?

📅  最后修改于: 2021-08-31 02:06:46             🧑  作者: Mango

HTML 中的 标签用于定义文档的头部,其中包含与文档相关的元数据。此标签可以包含其他头部元素,例如 、<meta>、<link>、<style>、<link> 等。</p> <p> <head> 元素在 HTML 4.01 中是强制性的,但在当前的 HTML 5 中可以省略。</p> <p><strong>句法:</strong> </p> <div class="hcb_wrap"> <pre class="prism line-numbers lang-html" data-lang="HTML"><code class="replace"><head> <title>Title of the document

属性:

  • profile:用于指定包含一个或多个元数据配置文件的文档的 URL,以便浏览器清楚地了解信息。

示例 1:

HTML



    
        How to define information about 
        the document using HTML?
    


    

        GeeksforGeeks     

           

        A computer science portal     

  


HTML


  

    
        How to define information about
        the document using HTML?
    
    

  

    

GeeksforGeeks

           

        A computer science portal     

  


输出:

示例 2:在此示例中,名为 style.css 的 CSS 样式表使用 标记进行链接。

CSS文件:

body {
    text-align: center;
}
h1 {
    color: green;
}

HTML文件:

HTML



  

    
        How to define information about
        the document using HTML?
    
    

  

    

GeeksforGeeks

           

        A computer science portal     

  

输出:

支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐
  • 歌剧
  • 苹果浏览器