HTML <header> Tag
The <header> element represents a container for introductory content or a set of navigational links.
A <header> element typically contains:
Example
<!DOCTYPE html> <html> <body> <article> <header> <h1>Most important heading here</h1> <h3>Less important heading here</h3> <p>Some additional information here.</p> </header> </article> </body> </html>