http://shouldiusetablesforlayout.com and its code viewed. Comments cracked me up. :-)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Should I use tables for layout?</title>
<style type="text/css">
html,body{
background:#999;color:#ccc;
}
h1{
font-family:"Georgia",Helvetica,Arial,Sans-Serif;
font-size:10em;
padding:.1em 0;
text-align:center;
color:#333;
margin:.5em auto;
}
</style>
</head>
<body>
<h1>No.</h1>
<!-- Honestly, no. -->
<!--
<table border="0" width="100%">
<tr>
<td align="center">No.</td>
</tr>
</table>
-->
<!-- Fact: Chuck Norris hates layout tables! -->
</body>
</html>
Comments