HTML header: Main Tips
- HTML
<header>
usually includes some introductory information for users. - The
<header>
HTML can contain a headline, a brand logo or ownership information.
header Explained
This HTML <header>
specifies a container for one or more headings.
A document can have multiple HTML headers, but they cannot be children of <footer>, <address> or other elements.
<article>
<header>
<h1>JavaScript</h1>
<h3>What is JavaScript?</h3>
<p>Today we are going to talk about JavaScript</p>
</header>
<p>JavaScript is a client side scripting language used to provide extra functionalities to the user.</p>
</article>
Note: the HTML <header> tag doesn’t have any particular attributes, but uses all of the HTML global attributes.