Complete the code to insert the page title in the template.
<title>[1]</title>The {{page_title}} placeholder is used to insert the page's title dynamically in the template.
Complete the code to include the main content section in the template.
<main>[1]</main>The {{content}} placeholder is used to insert the main content of the page inside the <main> tag.
Fix the error in the template code to correctly display the page footer.
<footer>[1]</footer>The footer section should use the {{footer}} placeholder to display the correct footer content.
Fill both blanks to create a template that shows the page title and main content.
<h1>[1]</h1> <section>[2]</section>
The <h1> tag should display the page title using {{page_title}}, and the <section> tag should display the main content using {{content}}.
Fill all three blanks to create a template with a header, main content, and footer.
<header>[1]</header> <main>[2]</main> <footer>[3]</footer>
The header, main, and footer sections should use {{header}}, {{content}}, and {{footer}} placeholders respectively to display the correct parts of the page.