Answer:
The answer to this question is given below in the explanation section.
Step-by-step explanation:
There are containers and empty elements or tags in computer discipline such as in HTML language.
Empty element:
These are the elements are the tags that have no content inside them and these elements or tags do not have end tags. for example the break tag in HTML such as <br> etc.
Container elements or tags:
These elements or tags have content inside them, they have opening and closing tags, unlike empty tags. for example paragraph tag, bold tag, and italic tag. These tags have opening and as well as closing tags. and between them, there is some content inside them.
the example of container tags is given below:
- <html> html code / html contents</html>
- <p>this is a<b>pargraph</b>container</p>