TEST Page

simple basic html config

by Ruben Ruiz Perez

HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TEST</title>
<style type="text/css">
	body { font-family: sans-serif; font-size: 12; color: #333; }
    a:link {color: #06F;}
    a:visited {color: #06F;}
    a:hover {color: #09F;}
    a:active {color: #06F;}
</style>
</head>
<body>
    <a href=""> Test link </a>
</body>
</html>