http://www.devarticles.com/c/a/HTML/...2.0-Explained/"Although XHTML 2.0 isn't ready for general use yet, understanding how the changes will affect your writing and code will be key to a smooth transition. With full XForms integration, separation of content and function, and other features, XHTML 2.0 promises to revolutionize the Web when XHTML 2.0 arrives."
With XHTML going in a new direction and severing backwards compatibility with HTML, we seeing a new standard emerge. This isn't something completely new, rather it is a stricter enforcement of the previous standards along with some new additions. Hopefully, in this instance we do away with "transitional" and "strict" and just have one "strict" and complaint.
I was wondering what anyone thought, about the matter and just for the sake of showing how a page would look, I have included some XHTML 2.0 markup.
Code:Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 2.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml2.dtd"> <html xmlns="http://www.w3.org/2002/06/xhtml2/"> <head> <title>Title of Document</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <section> <p>This is just an example</p> </section> <section> <ul> <li>Item One</li> <li>Item Two</li> </ul> </section> </body> </html>








Bookmarks