Tribute Page Project Ques

Quick little clarification question.
What does it mean by putting all of my elements in “id=main”?
Why not just individually make changes to my elements?
Do I put literally everything into my #main?

Challenge: Build a Tribute Page

Link to the challenge:

Yes. All of your HTML, should be inside an element with the id “main”.

I’m not sure what you mean by this question.

I just don’t get the point of putting it all in id “main” just to have further understanding would be nice

The id requirements for the projects are so that the tests work. It allows the test to identify the required parts of your project.

HI @Morgantf123 !

Welcome to the forum!

The goal of these projects is to learn how to break up your content into different sections.
That is why we want you to create an element with an id="main" because all of your main content should go in there.

You can choose to use a div tag or main tag.
The main tag would be more semantically correct.

You could choose to have a header, main and footer in your html

<header>
introductory content goes here
you could choose to have a nav tag inside here for later projects
</header>

<main>
main content goes here
For example, your img, p, anchor and other heading tags will go here
</main>

<footer>
content like copyright information can go here
</footer>

Hope that clears it up!

Ahh thank you very much I just want everything I learn here to have a deep understanding of. :+1:

Yes it does thank you very much :pray:

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.