Why there're no <main> tag in the "Landing page" template?

Hello everyone! I’m practicing html/css with “Landing page” project. I have seen source code of template page: https://codepen.io/freeCodeCamp/full/RKRbwL but I wonder why this page doesn’t have <main> tag. I’m learned that a webpage should have “header-main-footer” form but this page doesn’t. One more question, if I use tag for this page, where should I put it?

the challenge does not require you to use a <main> tag. If you want to use a main tag in your project it should contain the main content of the page and not contain anything that is repeated across documents such as sidebars, navigation links, copyright information, site logos, and search forms.

https://www.w3schools.com/tags/tag_main.asp

1 Like

thank you guy for your answer! now I got it!