Complete the code to add a header section with a title.
<header>
<h1>[1]</h1>
</header>The <h1> tag inside the <header> should contain the page title text, like "Welcome to My Site".
Complete the code to add a footer with copyright text.
<footer>
<p>[1]</p>
</footer>The footer paragraph should contain the copyright text as plain text, for example, "Ā© 2023 My Company".
Fix the error in the main section by completing the blank with the correct semantic tag.
[1]
<p>This is the main content area.</p>
</main><section> or <div> instead of <main>The main content area should start with the <main> tag to be semantically correct.
Fill both blanks to create a page layout with header and footer sections.
[1] <h2>Site Header</h2> </header> <main> <p>Page content goes here.</p> </main> [2] <p>Site Footer</p> </footer>
<section> instead of <header> or <footer>The first blank should be the opening <header> tag and the second blank the opening <footer> tag to create proper page sections.
Fill all three blanks to build a simple page with header, main, and footer sections.
[1] <h1>My Website</h1> </header> [2] <p>Welcome to the main content.</p> </main> [3] <p>Ā© 2023 My Website</p> </footer>
<section> instead of semantic tagsThe page should start with <header>, then <main>, and end with <footer> for proper semantic structure.