previous
|
start
|
next
Differences Between XML and HTML
XML tags are case-sensitive
<LI> is different from <li>
Every XML start tag must have a matching end tag
If a tag has no end-tag, it must end in />
<img src="hamster.jpeg"/>
XML attribute values must be enclosed in quotes
<img src="hamster.jpeg" width="400" height="300"/>
previous
|
start
|
next