Do you make sure that all your tags are well formed ?
Last updated by Brady Stroud [SSW] 8 months ago.See historyDo you know how to form HTML/XML tags on webpages? We need to make sure that all HTML/XML tags which open once, must be closed properly.
<div>
<p>Hello HTML</p>
</div>
Figure: Good Example
<breakfast_menu>
<food>
<name>Homestyle Breakfast</name>
<price>$6.95</price>
<description>two eggs</description>
<calories>950</calories>
</food>
</breakfast_menu>
Figure: Good Example
<div>
<p>Hello HTML
</div>
Figure: Bad Example
<breakfast_menu>
<food>
<name>Homestyle Breakfast
<price>$6.95
<description>two eggs
<calories>950
</food>
</breakfast_menu>
Figure: Bad Example