Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML or XML(Basics Diferences)

Status
Not open for further replies.

Gert

Programmer
Apr 9, 2000
240
DO
I'm new in Webpage programming, but I'm building my page on Front Page, but I think I should learn some HTML or XML, and I should buy some books of some of them, but would realy love to know the deferences between them, could somebuddy gime a little help with it.

Thanks A lot
 
With HTML you use predefined tags such as <HTML> <BR> that the browser interprets... speaking on simple terms about XML you can create your own tags...

<COMPANY>
<NAME>Bobs Salvage</NAME>
</COMPANY>

There are other complex issues with XML but this is a starting point.
 
the main differnce is that xml is designed to ORGANIZE DATA whereas html is an actual language that can help you displaying those datas
if you only use xml (without css) you'll get pages looking like
<list> [if you click here you can expand/collapse the content]
<item> blahblah </item>
<item> blahblah </item>
<item> blahblah </item>
</list>
mmmm neat web page !!!
don't program with xml, use it only to organize your datas.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top