Header in HTML5 means "header, header". It is a semantic tag used to define the header of a document or a part of the document. The syntax is "
header code"; In a document, multiple header elements can be defined as containers for introduction content or navigation link bars.
The operating environment of this tutorial: Windows 10 system, HTML5 version, Dell G3 computer.
What is the meaning of header in HTML5
Header in HTML5 means "header, header", which is a semantic tag.
In a document, you can define multiple
Note: The
The example is as follows:
<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>
Output result:
Recommended tutorial: "html video tutorial"
The above is the detailed content of What does header mean in HTML5. For more information, please follow other related articles on the PHP Chinese website!