Identify a section with id, class and a data attribute. Semantic structure should describe meaning, not visual appearance.
Correct example✓
<section id="services" class="service-list" data-kind="commercial"><h2>Services</h2><p>Web solutions for businesses.</p></section>
The id uniquely identifies an element in the document, class associates it with one or more groups, and data-kind stores page-specific information. The h2 still describes the section’s meaning.