References

Collection of references for web development.

HTML header tag

Description

The HTML <header> element represents a container for introductory content or navigational aids. The content normally consists of headers, images and paragraphs. The <header> element cannot be placed within the <address>, <footer>, or another <header> element.

Example

<header>
	<h1>Section Heading</h1>
	<p>Section Paragraph</p>
</header>

Example #2

<article>
	<header>
		<h1>Article Heading</h1>
		<p>Posted by David</p>
	</header>
	<p>Article content....</p>
</article>