Thread: Xhtml
View Single Post
Old 03-08-2004, 02:55   #2 (permalink)
smallbeer
I Ain't Losing Any Sleep™
 
Join Date: Apr 2003
Posts: 5,235
Quote:
Originally Posted by superghost
Does anyone know where a good site for learning XHTML is located at?
A couple of the better ones:
http://webmonkey.wired.com/webmonkey/00/50/index2a.html
http://www.w3schools.com/xhtml/

Quote:
Originally Posted by superghost
Also how difficult is it to convert an exisiting HTML doc to XHTML.
Easier than you think. Just make sure you've got a valid DTD and character encoding, read the tutorials and then do as the validator tells you. If you get stuck, just come on here and ask.

valid dtd and character encoding:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>my first xhtml page</title> <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" /> </head>
Quote:
Originally Posted by superghost
Is it preferred
yes, it's the future....I've seen it.

Quote:
Originally Posted by superghost
will it take over HTML-LOOSE?
no idea what that it. google didn't seem to either.
__________________
That's fuckin' ingenious, if I understand it correctly. It's a Swiss fuckin' watch.
  Reply With Quote