Posts filed under 'HTML'

The Multipage Validator as an official Google button

Marc-Antoine Ross April 25th, 2006 Add comment

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.

HTML bases

Mario Laflamme March 15th, 2006 Add comment

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>

Schedule

July 2008
M T W T F S S
« May    
 123456
78910111213
14151617181920
21222324252627
28293031