<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>