Hey, I think you know HTML. Well, if you don't get serius, your site will be lost in 1 year. That's why you MUST learn XHTML. There are some differences.
XHTML must be well-formed:
Heeeeellloooo
Don't forget to close [img],
& <hr>!
[img]image.png[/img]
<hr />
No <font>!!!!
Yup...there's no more <font>. Learn to terminate it:
http://www.w3schools.com/css
Don't use [b], [i], <u>....use CSS:
Again, use CSS (see link above). If you can't use CSS, use [b] & [i], <del>.
Don't forget to close
!
In HTML, there's no need for </p>. But in XHTML, you MUST include it.
XHTML DTDs:
XHTML 1.0 Strict, Transitional & Frameset
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
XHTML 1.1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
Hey, read more about XHTML at:
http://www.w3schools.com/xhtml
and highly recommended:
http://www.w3.org/TR/xhtml1 and
http://www.w3.org/TR/xhtml11
Thanks for reading!!! Nice XHTML 'flawors'...
