Page is a not externally linkable
WarmGlow - 11:33 am on Jul 16, 2003 (gmt 0)
europeforvisitors, Nice theory but it does not work in practice. Create a new HTML document with the following lines and then view the document in your web browser.
HTML is a structural markup language, and the <h1> and </h2> tags indicate a structural element: a top-level headline. That value shouldn't change because of a presentational element such as <font> and </font> tags.
<head>
<title>Font Size Test</title>
</head>
<body text="#000000" bgcolor="#ffffff">
<h1><font size="-3">This Is Not Important Text</font></h1>
<h2><font size="+3">This Is Important Text</font></h2>
<blockquote>Google gets it right.</blockquote>
</body>
</html>