Forum Moderators: not2easy

Message Too Old, No Replies

valid CSS, cant validate html

         

Kysmiley

7:00 pm on Apr 11, 2004 (gmt 0)

10+ Year Member



Well I am finally able to get a valid CSS return from w3c.org but when I try to validate the html I get this...
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 validate the document. The sources I tried are:
The top of my HTML document reads....

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html><head>
<title>Sunsets</title>
<link rel="stylesheet" type="text/css" href="ph1.css">
<style type="text/css" media="all">

</style>
<link rev="made" href="mailto:us@mysite.com">
<meta name="description" content="Photographs in perfect harmony with their environment">
<meta name="keywords" content="">
</head><body>
Can anyone tell me what I am missing in here. Even though i use the same html address to get the valid css icon I am not able to get a reading on the HTML
Thanks Pat

victor

8:06 pm on Apr 11, 2004 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You are missing character set encoding from your HTML header -- something like this:

<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">

Or use the extended interface:
[validator.w3.org...]

Kysmiley

8:38 pm on Apr 11, 2004 (gmt 0)

10+ Year Member



Thanks for the info I just found it on the W3C page not 5 minutes before you posted your reply. now to find out why its not accepting my img sizing.