2

可能重复:
<header> 与 <head>

我必须<div class="header"><header>在 HTML5 中那样使用吗?有人解释了<header> vs. <head>这样的一个问题。我有点困惑。谢谢你的帮助。我很感激。

4

5 回答 5

9

正如链接的问题所解释的:

   <head>
     <title>Your page | Your company</title>
     <meta name="keywords" value="blah blah"/>
     <link rel="stylesheet" href="css/style.css">
     <script></script>
   </head>

在 HTML5 中仍然是一样的,用于存储元信息和链接脚本等。

页眉是一个新元素,用于对页或节的页眉进行语义分组。

包括詹姆斯西姆的信息:

从技术上讲,HTML5 中的元素代表一组介绍性或导航帮助。它不仅适用于给定的页面或文档。可以在切片元素中使用,例如 or too. 有关更多信息,请参阅 WHATWG

   <header>
     <h1>Your page heading</h1>
     <nav>
        <ul><li>Global Nav Item 1</li></ul>
     </nav>
   </header>
于 2012-04-19T06:58:24.563 回答
1

您不需要使用 HTML5 中的任何新标签。如果你愿意,你可以使用它们。

<header>是标记站点标题部分的语义标签,而<head>元标签之类的地方。

于 2012-04-19T06:57:15.187 回答
0
<head></head>

是您的元信息、脚本、样式表等的去向。

和header有点像<div class="header">

于 2012-04-19T06:57:01.943 回答
0

<head>标签在 body 元素之外使用在这里你加载你的脚本和样式表,放置你的元数据和你的页面标题。

HTML5<header>标记用于在页面上显示标题。包含您的徽标或菜单。视网站而定。

这些是 2 个不同的标签,具有 2 个不同的含义

于 2012-04-19T07:15:16.440 回答
0

<header>, <article>, <section>, <aside>,等是 HTML5 中添加的标签<mark><footer>使您的代码更有意义<div>

<div>基本上是用于除法,不清楚您的 DIV 中有什么内容。

<header> as it's name anyone can understand that it's contain content related to heading

same for article, section, aside, mark they all are tags contain content have to display to user.

<head> tag do not contain any information have to display on screen to user. It's for your meta tags, to add style sheets, title, keywords etc.

For more information in detail you can check http://html5doctor.com/ It's a excellent website to understand HTML5 in detail

于 2012-04-19T08:06:17.407 回答