Which HTML5 element defines the main content of a web page ?
2024
Which HTML5 element defines the main content of a web page ?
Answer: C. <main> — The <main> element correctly identifies the primary content area of a document. Review HTML5 semantic tags documentation to confirm how <main> differs from…
- A.
<nav>
- B.
<header>
- C.
<main>
- D.
<footer>
Attempted by 278 students.
Show answer & explanation
Correct answer: C
The <main> element correctly identifies the primary content area of a document. Review HTML5 semantic tags documentation to confirm how <main> differs from other structural elements like <div> or <section>. This ensures you understand when to apply specific semantic tags for accessibility and SEO purposes.
Loading lesson…