Label

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label

Represents a caption for an item. Good for associating labels with items programmatically.

Example

<label for="cheese">Do you like cheese?</label>
<input type="checkbox" name="cheese" id="cheese"/>

Main

https://www.w3schools.com/tags/tag_main.asp

Specify the main content of the document. Content should be unique to the document.

Example

<main>
  <h1>Some heading</h1>
  <p>Some text</p>
</main>