Articles → HTML 5 → Header And Footer Tags In Html5
Header And Footer Tags In Html5
Sample Code
<!DOCTYPE html>
<html>
<head>
<title>Header and footer sample</title>
</head>
<body>
<article>
<header>
<h1>Article on global warming</h1>
</header>
<section>
<h2>Subheading 1</h2>
<p>Content 1</p>
</section>
<section>
<h2>Subheading 2</h2>
<p>Content 3</p>
</section>
<section>
<h2>Subheading 3</h2>
<p>Content 3</p>
</section>
<footer>© gyansangrah.com. All rights reserved</footer>
</article>
</body>
</html>
Try It
Output
Browser Support
Internet Explorer | Firefox | Chrome | Safari | Opera | Edge |
---|
9.0 | 4.0 | 6.0 | 5.0 | 11.1 | Yes |
Video