Jump to content

Your Favorite


jawad hamzah

Recommended Posts

Your site does not display well in Firefox, you should take a look at that. Designing only for Internet Explorer isn't an option anymore. IE only has about 68% share now and Firefox and Safari make up about 29%. That is too many users to ignore.

Link to comment
Share on other sites

For starters a document has ONE <html> section, ONE <head> section, and ONE <body> section. You have many of these, and they overlap, and it's just a mess. Here's a basic outline of a good document:

<!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=iso-8859-1">		<title></title>		<style type="text/css">			/* style definitions go here */		</style>		<script type="text/javascript">			// javascript functions go here		</script>	</head>	<body>		<!-- Body content goes here -->	</body></html>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...