View Single Post
12-22-2004, 09:16 PM
#1
Michael is offline Michael
Michael's Avatar
Status: Senior Member
Join date: Dec 2004
Location:
Expertise:
Software:
 
Posts: 845
iTrader: 0 / 0%
 

Michael is on a distinguished road

  Old  XHTML coding problem

The following code only validates as "This Page Tentatively Validates As XHTML 1.0 Strict (Tentatively Valid)!"

and gives the message:


No Character Encoding Found! Falling back to UTF-8.

I was not able to extract a character encoding labeling from any of the valid sources for such information. Without encoding information it is impossible to reliably validate the document. I'm falling back to the "UTF-8" encoding and will attempt to perform the validation, but this is likely to fail for all non-trivial documents.

So what should I do? Tell me more...
Note:
The Validator XML support has some limitations.

The uploaded file was tentatively found to be Valid. That means it would validate as XHTML 1.0 Strict if you updated the source document to match the options used (typically this message indicates that you used either the Document Type override or the Character Encoding override).


If any of you could look at the code below and tell me what I put wrong, it would help me out a lot.

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">
<head>
<title>Pointe Media - Professional Website Design and Quality Web Solutions</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>

<body>
<div id="topbar"></div>
<div id="header"><img src="images/header.jpg" alt="Pointe Media - Professional Website Design and Quality Web Solutions" /></div>
<div id="nav"><a href="#"><img src="images/navhome.jpg" alt="Home" /></a><img src="images/navindent.jpg" alt="" /><a href="#"><img src="images/navabout.jpg" alt="About Us" /></a><img src="images/navindent.jpg" alt="" /><a href="#"><img src="images/navportfolio.jpg" alt="Portfolio" /></a><img src="images/navindent.jpg" alt="" /><a href="#"><img src="images/navproducts.jpg" alt="Products" /></a><img src="images/navindent.jpg" alt="" /><a href="#"><img src="images/navsolutions.jpg" alt="Solutions" /></a><img src="images/navindent.jpg" alt="" /><a href="#"><img src="images/navcontact.jpg" alt="Contact Us" /></a></div>
</body>

</html>
Thanks for the help in advance.

Happy Holidays ,
Remix