What makes up an HTML element?


a) a single HTML tag and anything that comes after the tag
b) a single HTML tag and anything that comes before the tag
c) a pair of HTML tags and all of the text between the tags
d) a pair of HTML tags and anything that comes before or after the tags

MAY GIVE BRAINLIEST

Respuesta :

Answer:

C

Explanation:

The two tags identifies what element you're creating, and whats between the two is the content.

Answer:

c) a pair of HTML tags and all of the text between the tags

Explanation:

An HTML element consists of a pair of HTML tags - a start tag and an end tag and all the text that comes between the tags.

For example:

Let us consider the HTML tag for hyperlink,

<a href='www.abc.com/text/page1.html'>My Page 1 </a>

Similarly the HTML tag for paragraph,

<p> This is my text in the paragraph </p>

And for italicized text,

<i> This text will be displayed in italics on the browser </i>