Which of the below statements describes the nature of HTML elements - check as many as apply

1. some HTML elements are "empty" meaning they do not contain content and are used to provide a directive

2. html elements are either block or inline

3. some HTML elements are "two sided", meaning they contain content or other HTML elements

4. some HTML elements have "attributes" that clarify or modify an element

Respuesta :

Answer:

The answer to this question is option 1,2 and 4.

Explanation:

Some html elements does not contain anything or having no content are called empty html elements.for ex:- <br>,<hr> etc.

HTML elements are of two types block and inline.block elements starts with new line for ex:-div,body etc.Inline elements does not starts with new line.for ex:-<style>,<meta>,<head>etc.

Html elements also contains attributes that modify the element for ex:-

<body style="background-color:blue;">

where style is an attribute.