vote up 15 vote down star
1

In an interview I was asked a question that I'd never thought about, which was "We already have HTML which fulfills all the requirements of writing a web page, so what's the need for XHTML?"

I Googled a lot and also read many articles, but I'm not able to get properly why XHTML has been introduced. Please explain to me.

flag

78% accept rate
wtf is with the downvotes? – annakata Feb 17 at 17:32
wow what's with all the downvotes on the answers here? 3 decent answers got downvotes. someone being competitive? – jcollum Feb 17 at 17:32
2  
somebody with a crush on html or something... – annakata Feb 17 at 17:33
@Downvoters: Downvote = incorrect answer. – Dave Swersky Feb 17 at 17:35
3  
No, Dave, downvote means the voter thought the answer wasn't helpful, or that the question was unclear or not useful. – Rob Kennedy Feb 17 at 17:44
show 1 more comment

13 Answers

vote up 12 vote down check

I am actually writing this to ask why the above three posts which speak about browser-consistence and well formed html have been voted down?

As it is known HTML is a industry standard. Browsers are implemented so that they render the marked up content as described in the HTML standard. Unfortunately there are areas that have not been well defined in HTML: what happens if user forgot a closing tag or what to do if a referred image is not found? some browsers use the 'alt' tag to have a place holder text item and some browsers display the 'alt' tag as a tool tip. The famous 'quirks' mode of browsers is a result of this lack of clarity. Because of this, it became quite possible that the same web page would display differently on different browsers.

Also as HTML usage grew there was one more problem: it was not extensible - there was no way to add user-defined tags.

XHTML solves the above problems:

  • adopt XML to provide extensible tags.
  • provide a 'strict' standard for web browsers

XHTML has well defined rules about the structure and these can be programatically enforced. Check the various online "XHTML Validators". They will tell if your XHTML is well formed or not (and highlight the problem areas). Because of these strict rules your page is more or less guaranteed to look the same on all browsers implementing XHTML.

[note] if you want to verify the above, please refer to the text "Head First XHTML and CSS"

link|flag
1  
Not getting this line "Because of these strict rules your page is more or less guaranteed to look the same on all browsers implementing XHTML." more or less ???? – Prashant Feb 17 at 17:50
2  
@Prashant: If a browser says it supports XHTML, it would first validate the xhtml before starting to render. If you pass an invalid xhtml page to such a browser, you would see a 'invalid format' kind of message. You don't see this because most websites don't bother so the browsers become lenient. – Sesh Feb 17 at 17:52
Yups, you're right, even we don't care about validating our web-app's markup. Thanks for the explanation! – Prashant Feb 17 at 17:58
1  
My answer would be "provide extensible tags and to ensure page displays same in all browsers". Like I said do read the first chapter in that easy book (head first xhtml and css). – Sesh Feb 17 at 18:06
1  
@Andrew: I was talking about avoiding the quirks mode where each browser can decide what it wants to do. – Sesh Feb 19 at 4:15
show 4 more comments
vote up 29 vote down

Because it is valid XML. That helps a lot since you can use a lot of tools originally designed for XML, such as XML parsers, XSLT, XPath, XQuery, ...

Normal HTML is a SGML dialect and that is not parsable without knowledge of the schema.

<ul>
    <li>one
    <li>two
    <li>three
</ul>

is correct HTML but not correct XML. If you want to parse that, you have to know that ul-elements have to be closed but li s don't.

link|flag
And it is XML based cause we can share the XML data, platform independently. right? If its wrong then why we are more concern about combining HTML with XML ?? – Prashant Feb 17 at 17:32
i think this says what it is, but not why it's a good thing; being able to use xml tools on your html isn't a very valid reason – jcollum Feb 17 at 17:34
1  
@jcollum - being able to use thousands of built & tested XML tools and libraries isn't a valid reason? Err... – Andrew Grant Feb 17 at 17:38
Ok, then what's the valid and appropriate reason? I wann to know that? – Prashant Feb 17 at 17:39
Adding XML to HTML provides the data validation and transformation capabilities of XML to HTML. It also allows for more reliable parsing, query, and rendering. – Dave Swersky Feb 17 at 17:41
show 4 more comments
vote up 18 vote down

XHTML also allows you to embed other XML dialects like MathML, Ruby, SVG, etc. (You can also embed XHTML in other XML dialects, if desired.)

If you are just 'making a web page', you don't necessarily need XHTML. But if you are programmatically generating a page, you might find that the tools for generating XML are better than those that generate HTML.

link|flag
perfect explanation about the role of XML? Thanks! voted up for you :) – Prashant Feb 17 at 17:34
vote up 14 vote down

In addition to Johannes answer, HTML is far too loose in its interpretations and tolerance, where XHTML's strict formalisation negates this.

Tolerance leads to variance, which leads to browser incompatibilities, which leads to the dark side.

link|flag
Tolerance is very useful. Strict adhereance to a XTHML DTD or Schema takes the X out of XML. I for one am hoping to stave off the straight jacket of application/xthml+xml for as long as humanly possible. – AnthonyWJones Feb 17 at 17:33
1  
Not here. A well defined child implementation of XML should remain standard. What the hell is a browser supposed to do with your <myTag>? – annakata Feb 17 at 17:36
The dark side stronger is not. Quicker, easier, more seductive. - Yoda – Treb Feb 17 at 17:58
@annakata: true but <tr rowID="12" /> is very useful, the browser doesn't need to do anything with it but my Javascript libraries find it useful – AnthonyWJones Feb 17 at 18:02
I think this ship has already sailed. Yeah, supporting bad HTML leads to a lot of browser bloat, but all the browsers already support it, and will for the foreseeable future. – jrockway Feb 17 at 18:12
show 1 more comment
vote up 12 vote down

From Wiki:

Because they need to be well-formed, true XHTML documents allow for automated processing to be performed using standard XML tools—unlike HTML, which requires a relatively complex, lenient, and generally custom parser. XHTML can be thought of as the intersection of HTML and XML in many respects, since it is a reformulation of HTML in XML.

Having HTML conform to XML standards allows for a much more consistent parsing of the page. Whereas in HTML, for example, you were allowed to have tags out of order <b><u>test</b></u> now you can't, they must be closed in the order they were opened. Things like this make DOM parsing (which is now used heavily in AJAX) much easier.

link|flag
IOW the major benefit is to the browser itself rather than the web developer. Web developers may benefit but typically in a secondary sense. – AnthonyWJones Feb 17 at 21:26
Having said that +1 becuase its the real motive behind XHTML. – AnthonyWJones Feb 17 at 21:27
vote up 7 vote down

I am sure you mustve encountered this article from W3.There is a lot to learn from that article. In short XHTML abides the xml rules besides having HTML set of tags. The Most Important Differences:

* XHTML elements must be properly nested
* XHTML elements must always be closed
* XHTML elements must be in lowercase
* XHTML documents must have one root element
link|flag
finally a question i can answer, but I'm too late – DrG Feb 17 at 17:32
answers what, but not why, -1 – jcollum Feb 17 at 17:35
@jcollum- Section 1.3 in the link I provided tells you why you need XHTML. – Perpetualcoder Feb 17 at 17:47
vote up 5 vote down

XHTML is an attempt to encourage the development of "well-formed" HTML.

HTML has evolved over more than 10 years. Its implementation, and the implementation of the browsers that parse and render it, are not exactly consistent. This is why cross-browser compatibility is a major headache.

HTML is based on SGML (Standard Generalized Markup Language.) XML is also derived from SGML, so they are cousins of a sort. XHTML marries the two, providing (in theory) the benefits of XML to HTML. This includes a well-defined schema that can be reliably validated, queried, and transformed.

link|flag
vote up 2 vote down

I think that it helps browsers correctly display the html without making assumptions about where tags should be closed. Any time a browsers assumes something you know what happens.

link|flag
that's not true. HTML is well defined even if you don't close the tags. Some tags have to be closed, some not. The sample from w3.org/TR/html4/struct/lists.html is correct HTML! The browser KNOWS, that li-tags cannot be nested. – Johannes Weiß Feb 17 at 17:36
the right thing about that is, that most people didn't understand which tags have to be closed and which not. So the browsers started to guess what you mean. The XML-rule that everything has to be closed is better because it's simpler. But the browsers could have enforced the HTML rule, too! – Johannes Weiß Feb 17 at 17:38
vote up 2 vote down

XHTML forces you to write cleaner code which is easier to maintain, renders more consistently, and easier to hook into the DOM. Comparing XHTML to HTML is like comparing a programming language that is strongly-typed to a programming language that is loosely-typed.

As mentioned above, XHTML allows you to play with SVG and MathML. I'd like to add RDFa to that list. RDFa allows you to add semantics to your content that is not covered by microformats. I've personally been doing a lot with Dublin Core and Friend-of-a-Friend.

link|flag
vote up 1 vote down

XHTML is simply about communication between systems. HTML is very difficult to parse, because of the number of variations that can occur as to what is well formed. Since XML is strict in its interpretation, this problem has been removed.

Think about a RESTful architecture. If a URL is permanent location to an item, then systems which would want to access this item should be able to consume the information returned from accessing the URL. XHTML doesn't make this possible per se, because a system could already parse the HTML and retrieve the necessary information. XML just makes this easier. There is no limiting predefined set of tags which make it difficult to classify data in a document (althought techinically you can do this in HTML, because browsers will ignore it). You can use whatever you want to classify what data is retrieved.

link|flag
vote up 1 vote down

If i want to crawl your site, and parse its contents, i can only do it if it's XML.

Parsing HTML is a nightmare.

link|flag
vote up 0 vote down

XML is a data interchange format - this is perfect for building websites because after all we are dealing with information and this info needs to be crawled and understood by computers (such as search engines).

link|flag
vote up 0 vote down

Because XHTML makes a lot more sense!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.