Home

XHTML 1.1 Template

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
    <title>XHTML Page</title>
    <!--link type="text/css" rel="stylesheet" href="some.css" /-->
    <style type="text/css">
        #baseDiv {color:#000000;}
    </style>
</head>
<body>
    <div id="baseDiv">
        <a id="link" href="#" onclick="helloWorld();return false;">Say hi...</a>
    </div>
    <!--script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script-->
    <!--script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js"></script-->
    <script type="text/javascript">
    //<!--<![CDATA[
        function helloWorld() {
            alert('Hello world!');
        }
    //]]>-->
    </script>
</body>
</html>