I recently acquired an HTML template with various sections, but I am unsure about some of the details.
One section in the file appears like this:
<section id="section-name" class="row">
</section>
Although I have seen simple <section> </section>
tags before, I am confused by a few things. Specifically, what is the purpose of the section ids? Do they correspond to CSS styles or can they exist independently from CSS? Upon reviewing my CSS file, I could not find any references to the section names used, leading me to believe that the ids are simply named for organizational purposes.
Is it accurate to assume that section ids are not tied to CSS? Or could they potentially be linked to CSS properties while still functioning without direct CSS connections?