Forum Moderators: open

Message Too Old, No Replies

Is there a new html standard?

For example: <br />

         

budbiss

3:07 am on Apr 1, 2004 (gmt 0)

10+ Year Member



I've been seeing alot of tags formatted like this recently, is this the new way of doing things? If so, what are the advantages? Are their any drawbacks (ex: imcompatibility with older browsers possibly)?

RammsteinNicCage

3:11 am on Apr 1, 2004 (gmt 0)

10+ Year Member



That is XHTML [w3.org].

Jennifer

vkaryl

3:11 am on Apr 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



xhtml. I guess you could call it the "coming future of the language"....

Mohamed_E

3:17 am on Apr 1, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



XHTML requires all tags to be closed. So you need to say:
<p>this is a paragraph of text</p>
rather than simply:
<p>this is a paragraph of text
Now some tags, like the <br> tag, do not have any content. Rather than write:
<br></br>
you use the simpler syntax:
[pre]<br />[/pre]
How useful is XHTML versus HTML? Here is a recent thread [webmasterworld.com].

budbiss

3:27 am on Apr 1, 2004 (gmt 0)

10+ Year Member



Thanks for the replies...I kinda like the idea...it seems to make more sense. I'm going to check out the links you all posted right now.