Marc-Antoine Ross
April 25th, 2006
Mario and I are very happy to announce that the Multipage Validator button has been added to the Google Toolbar button gallery. This button works with our Multipage Validator which is a very powerful tool to validate your website’s HTML or xHTML code.
Mario Laflamme
March 15th, 2006
Even if I advocate the use of the XHTML, the HTML can be useful in certain cases. Then, here is a list of valid HTML bases which can be used.
HTML 4.01 Strict with ISO-8859-1 encoding
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN”
“http://www.w3.org/TR/html4/strict.dtd”>
<html>
<head>
<title></title>
<meta http-equiv=”content-type”
content=”text/html; charset=iso-8859-1″>
<link rel=”stylesheet” href=”/styles/styles.css”>
</head>
<body>
</body>
</html>
HTML 4.01 Transitional with ISO-8859-1 encoding
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”
“http://www.w3.org/TR/html4/loose.dtd”>
<html>
<head>
<title></title>
<meta http-equiv=”content-type”
content=”text/html; charset=iso-8859-1″>
<link rel=”stylesheet” href=”/styles/styles.css”>
</head>
<body>
</body>
</html>
HTML 4.01 Frameset with ISO-8859-1 encoding
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Frameset//EN”
“http://www.w3.org/TR/html4/frameset.dtd”>
<html>
<head>
<title></title>
<meta http-equiv=”content-type”
content=”text/html; charset=iso-8859-1″>
</head>
<frameset rows=”100,*”>
<frame src=”header.html”>
<frame src=”content.html”>
<noframes>
<body>
<p>Warning! Your navigator doesn’t
support frames.</p>
</body>
</noframes>
</frameset>
</html>