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.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
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.