HTML bases

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>

Entry Filed under: HTML

Leave a Comment

Required

Required, hidden

Some HTML allowed

Trackback this post  |  Subscribe to the comments via RSS Feed

Schedule

March 2006
M T W T F S S
    Apr »
 12345
6789101112
13141516171819
20212223242526
2728293031