当前位置: 代码迷 >> HTML/CSS >> HTML 五 新标签<footer> &<header>
  详细解决方案

HTML 五 新标签<footer> &<header>

热度:1199   发布时间:2013-07-01 12:33:04.0
HTML 5 新标签<footer> &<header>
<header> 标签定义文档的页眉(介绍信息)。

<footer> 标签定义 section 或 document 的页脚。在典型情况下,该元素会包含创作者的姓名、文档的创作日期以及/或者联系信息。

<!DOCTYPE HTML>
<html>
  <body>
    <header>
      <h1>Welcome to my homepage,i‘m header</h1>
      <p>My name is wjy</p>
    </header>
    <footer>hello,i’m footer.</footer>
  </body>
</html>
  相关解决方案