HTML5中header的意思是“标头、首标”,是一个语义标签,用于定义文档或者文档的一部分区域的页眉,语法为“
页眉代码 ”;在一个文档中,可以定义多个header元素,作为介绍内容或者导航链接栏的容器。
本教程操作环境:windows10系统、HTML5版、Dell G3电脑。
HTML5中header是什么意思
HTML5中header的意思是“标头、首标”,是一个语义标签。
在一个文档中,您可以定义多个
注释:
示例如下:
<html> <body> <article> <header> <h1>What Does WWF Do?</h1> <p>WWF's mission:</p> </header> <p>WWF's mission is to stop the degradation of our planet's natural environment, and build a future in which humans live in harmony with nature.</p> </article> </body> </html>
输出结果:
推荐教程:《html视频教程》
以上是HTML5中header是什么意思的详细内容。更多信息请关注PHP中文网其他相关文章!