+ 1
How are tages used in XML different from tags in html?
give more than 2 points
3 RĂ©ponses
+ 2
Html tags are more Generalising, example, <p> is used for paragraphs,<h2> for headings, etc
Whereas in XML, tags are more like objects, and are very descriptive example
<book>
<title>Life as a Nigerian</title>
<author>D'lite</author>
<pages>200</pages>
</book>