xhtml / html - which would employers choose?

Soldato
Joined
2 Nov 2002
Posts
3,304
Location
Aberdeen
So i'm planning on developing a new site and i'm torn between whether or not it's worth making the site in xhtml or html. I suppose i will be interested whether or not future employers would be more impressed with the xhtml, rather than stardard html.

Any info on this subject would be greatly appreciated.

Chiz.
 
Well, for the most part XHTML is just stricter HTML. If you can do XHTML, you can do HTML. My personal choice is to make sites that are compatible with both (save for the DOCTYPE of course). It's not that hard. :)
 
Well, as Berserker said, XHTML is just an XML-compliant subset of normal HTML. There's no real reason not to code it in XHTML to be honest, but if you do use XHTML, make sure it's strict rather than transitional.

As for employers, they'd undoubtedly be more impressed if you can produce XHTML compliant markup; if you can code in XHTML, you can code in HTML (afterall, XHTML is HTML).
 
The last time I was coding HTML (a while now), I was a lazy goit and used Transitional. :o

Actually, that's a lie, most of the site validates Strict, but just occasionally I have a relapse, so I left the site at Transitional. :)
 
Use HTML unless you can guarantee your users can support XHTML properly—which includes mime-types.

Since IE still can't support XHTML properly, use HTML.

(I'm guilty of not following this advice sometimes but I really should.)
 
Depends what you mean by employers - that is, whether they're 'techies' or not.

If I (as a techie) was employing a web developer, I'd be more impressed by the quality of markup, e.g. a super-compact, valid 4.01 Strict would impress me more than an overweight, valid XHTML page in the right context. That would certainly show a greater understanding of how markup works than the right-or-wrong syntax of XHTML.

Non-techie employers won't care in the slightest, only whether it a) looks pretty or b) makes a lot of money.

Having said that, I was employed [partly] on the basis of being able to write XHTML...
 
Back
Top Bottom