G
guitar.is.good
Hi,
I have done a fair bit of personal web design in XHTML 1.0/1.1 strict
and am very curious about XHTML2.0.
I have a couple quick questions I hope some people may be able to
answer for me as I am strugelling to find answers elsewhere.
To my understanding it is still in draft, but is it actually in use? I
found one page, but it was not properly done.
Ultimately I want to design a simple XHTML2.0 webpage for a LAN running
on the current apache2 webserver. But I can not figure out how to code
an XHTML2.0 page. The actual content seems fairly standard, but the
doctypes etc I can not get to validate on the w3c validator. It
especially gives my gumpf about mime types, but I dont know haw to
solve it (I read xhtml2.0 needs an special xml type mime type)
So far I have:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 2.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml2.dtd">
<html>
<head>
<title>Tester Page</title>
<link rel="stylesheet" type="text/css" href="./css/default.css" />
</head>
<body>
<div>
<section>
<h>Test Page</h>
<p>This is a page to test XHTML2.0</p>
</section>
</div>
</body>
</html>
I read in wiki I think that something like this also needs to be done,
not sure tho.
<html xmlns="http://www.w3.org/2002/06/xhtml2/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2002/06/xhtml2/
http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd">
Is it feasable to code a website in XHTML2.0, ignoring compatability
issues (I heard mozilla firefox is the only browser compatible, this is
only some localhost type webpage)
Something I really like the look of in XHTML2.0 is the section + h
elements and the ability to put link / href attributes in any element,
makes much more sense!
Thanks for any help.
I have done a fair bit of personal web design in XHTML 1.0/1.1 strict
and am very curious about XHTML2.0.
I have a couple quick questions I hope some people may be able to
answer for me as I am strugelling to find answers elsewhere.
To my understanding it is still in draft, but is it actually in use? I
found one page, but it was not properly done.
Ultimately I want to design a simple XHTML2.0 webpage for a LAN running
on the current apache2 webserver. But I can not figure out how to code
an XHTML2.0 page. The actual content seems fairly standard, but the
doctypes etc I can not get to validate on the w3c validator. It
especially gives my gumpf about mime types, but I dont know haw to
solve it (I read xhtml2.0 needs an special xml type mime type)
So far I have:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 2.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml2.dtd">
<html>
<head>
<title>Tester Page</title>
<link rel="stylesheet" type="text/css" href="./css/default.css" />
</head>
<body>
<div>
<section>
<h>Test Page</h>
<p>This is a page to test XHTML2.0</p>
</section>
</div>
</body>
</html>
I read in wiki I think that something like this also needs to be done,
not sure tho.
<html xmlns="http://www.w3.org/2002/06/xhtml2/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2002/06/xhtml2/
http://www.w3.org/MarkUp/SCHEMA/xhtml2.xsd">
Is it feasable to code a website in XHTML2.0, ignoring compatability
issues (I heard mozilla firefox is the only browser compatible, this is
only some localhost type webpage)
Something I really like the look of in XHTML2.0 is the section + h
elements and the ability to put link / href attributes in any element,
makes much more sense!
Thanks for any help.