which of the following is both a container tag and empty tag
Answers
Answered by
1
Answer:
Empty tags are required only at the starting of the line of code, but not in ending.
For eg: <br>, <link>, <img>
these above examples are the examples of empty tags.
Once container tag is started it has to end somewhere.
For eg: <html> </html> , <head> , </head> , <title> , </title>
these above examples are the examples of container tags.
In other words, these container tags come in pairs, whereas empty tags don't.
Explanation:
Similar questions