Tell us what’s happening:
Describe your issue in detail here.
i dont know what it wants me to do
i dont understand
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p>
</main>
</body>
</html>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36
Indent definition : is to begin a line of written or printed text after leaving extra space, compared with the place where other lines begin.
And the reason is to establish a hierarchy visually, it doesn’t affect the code, but it is very helpful to understand the relationships between the tags by looking at the code. Understanding these relationships is necessary when applying CSS.
this is the parent
this is child 1
this is child 2
this is grandchild 1
this is grandchild 2
For example, applying a background color to the parent div, would mean that all its children and grand children will have the same background-color by default.