Mehrab
Mehrab
KPCKevin Powell - Community
Created by Mehrab on 3/28/2025 in #front-end
Heading tags in different parent elements?
Good idea
40 replies
KPCKevin Powell - Community
Created by Mehrab on 3/28/2025 in #front-end
Heading tags in different parent elements?
I first came up with the idea of doing what you did (h1 in main tag) but then I saw that I have additional elements for styling as well (some div's and a paragraph) so I thought using section for the hero might be a good idea
40 replies
KPCKevin Powell - Community
Created by Mehrab on 3/28/2025 in #front-end
Heading tags in different parent elements?
I cannot do that on the page My html structure is something like this:
<body>
<main>
<section class="section hero">
<h1 class="section__title">
TEST
</h1>
<p class="section__paragraph">
Lorem...
</p>
</section>
<section class="section">
<h2 class="section__title">
TEST FOR H2
</h2>
<p class="section__paragraph">
Lorem...
</p>
</section>
</main>
</body>
<body>
<main>
<section class="section hero">
<h1 class="section__title">
TEST
</h1>
<p class="section__paragraph">
Lorem...
</p>
</section>
<section class="section">
<h2 class="section__title">
TEST FOR H2
</h2>
<p class="section__paragraph">
Lorem...
</p>
</section>
</main>
</body>
I just want to know if this html is valid and Accessible
40 replies