Answer:
The <header>, <footer>, <nav> and <article> elements are the correct answer of this question.
Explanation:
The < header > tag represents an explanatory content container, or a collection of navigational links.
<u>For example</u>:- header {
display: block;
}
The <footer> tag contain sitemap,copyright information,back to top links.it contains details about the item which it contains.
<u>For example</u>:- footer {
display: block;
}
The tag < nav > specifies a collection of links to a navigation.
<u>For example</u>:- nav {
display: block;
}
The <article> tag specifies independent, self-contained content.
<u>For example</u>:- article {
display: block;
}