Style Header Footer
section {
border: 1px solid red;
}
section header {
background-color: yellow;
}
section footer {
background-color: aqua;
}
Html body Header Footer
<section>
<header>This is a header</header>
<p>This is a section paragraph</p>
<footer>This is a footer</footer>
</section>
Hasilnya akan tampak seperti ini :