A header component ordinarily holds the area's heading (a h1—h6 component or a hgroup component), however can likewise hold other substance, for example, a chapter by chapter list, an inquiry structure, or any important logo
The header component is commonly used for defining the header for a particular document or section. It also can be used for introductory content of a container and may be also used for navigation links. You may have multiple header elements in a single document. This element can’t be used within the footer, address and another header element.
Here is the Syntax for HEADER Element
Supported Browser
<header> Some descriptions here </header>
Below is complete syntax along with example
<!DOCTYPE html> <html> <head> <title>Title name will go here</title> </head> <body> <article> <header> <h1>This is Header Part</h1> </header> <p>The Remaining Content will go here</p> </article> </body> </html>