Problem Statement
Which HTML structure best represents a semantic blog layout?
Explanation
A semantic blog layout typically includes header for introductory content, main for the main article section, article for posts, and footer for author info or related links.
Code Solution
SolutionRead Only
<header>
<h1>My Blog</h1>
</header>
<main>
<article>
<h2>Post Title</h2>
<p>Post content...</p>
</article>
</main>
<footer>
<p>© 2025 Blog</p>
</footer>Practice Sets
This question appears in the following practice sets:
