Looks fine to me ... Win2000 / IE6 and FF
The code is terrible tho ... you don't have <
html> or <body> tags in there.
To avoid problems with browsers not displaying your site properly when DW does, do yourself a favor and learn
HTML. Get away from the design view of dreamweaver and stick the code view and hand-code your site.
The basic
HTML/
XHTML document should look like this:
Code:
<!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" lang="en-CA" xml:lang="EN-CA">
<head>
<title>Some title</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
</body>
</html>