Choose all items that represent characteristics of an HTML element. used to include additional information in an attribute consists of a start tag, an end tag, and the contents they surround may sometimes contain nested elements consists of a keyword followed by an equals sign and additional information in quotes sometimes has required attributes

Respuesta :

Answer:

Explanation:

We could find different kind of tags in HTML, in this case, we can choose the tag <p> we're going to see all the items about this tag.

We can close the tag with the symbol /

<p> example </p>

We can add id or class in this tag

<p id="example"> example </p>

<p class="example"> example </p>

this help up to add CSS code, but we can add style direct in the HTML code:

<p style="color: red;"> example </p>

In this example the text going to be color red