Computer Science, asked by bagrisangeeta80, 7 months ago

Give one point of distinction between the following:
I. <head> and <body> tag 2.<br> and <hr>tag
3.<title> and <hr>tag
4.container and empty tag


Answers

Answered by iamsadafhasan
16

Answer:

Hello

Explanation:

Container tag consists of opening tag+content+closing tag . While empty tag is tag without content or a closing tag.

Container tags are used to enclose texts, images etc. Like <body> , <div> etc are container tags as we put some content inside them.

But empty tags are used to insert something. Like if we want to insert an image or a line-break or a horizontal-line , we use <img />, <br />, <hr /> tags respectively.

Empty tags can be used inside the container tags. Like you can insert a line-break or an image anywhere in your page but it should be inside some container tag.

<body>

<p>

Some text here <br /> This inserts a line break.

</p>

<p>

<img src='' '' />

</p>

</body>

I hope its clear now

Similar questions