i know that what is namespace in xml why it is used?
but i don't know how it is used?
in the below example i know that we are declaring a namespace(alias ) h and f for seprating the table tag but what is "room" and what the URI means
i.e "<room xmlns:h="http://www.w3.org/TR/html4/" what it means?
Can any one please explain the terms...
<room xmlns:h="http://www.w3.org/TR/html4/"
xmlns:f="http://www.w3schools.c om/furniture">
<h:table>
<h:tr>
<h:td>Apples</h:td>
</h:tr>
</h:table>
<f:table>
<f:name>Afric an Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120 </f:length>
</f:table>
but i don't know how it is used?
in the below example i know that we are declaring a namespace(alias ) h and f for seprating the table tag but what is "room" and what the URI means
i.e "<room xmlns:h="http://www.w3.org/TR/html4/" what it means?
Can any one please explain the terms...
<room xmlns:h="http://www.w3.org/TR/html4/"
xmlns:f="http://www.w3schools.c om/furniture">
<h:table>
<h:tr>
<h:td>Apples</h:td>
</h:tr>
</h:table>
<f:table>
<f:name>Afric an Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120 </f:length>
</f:table>
Comment