View Single Post
  #2 (permalink)  
Old 10-22-2007, 08:10 AM
tamecrow's Avatar
tamecrow tamecrow is offline
WebProWorld Veteran
 

Join Date: Aug 2007
Location: United Kingdom
Posts: 355
tamecrow RepRank 2
Default Re: Tidy up my code and head tags.

That's not too bad at all. I was expecting much worse!

This:

Quote:
<head>
<META NAME="DESCRIPTION" CONTENT="DVD-and-Media.com supply blank DVD media, duplication, replication services, dvd cases and plastic disc storage products. The largest distributors of dvd cases and boxes in the UK only ever using quality products and the best materials.">
<TITLE>DVD-and-media.com blank dvd recordable disc and case products for duplication and replication</TITLE>
<META NAME="KEYWORDS" CONTENT="dvd media,blank disc,dvdr,dvd cases,replication,cdr">
<META NAME="ROBOTS" CONTENT="ALL,FOLLOW,INDEX">
<META NAME="REVISIT-AFTER" CONTENT="20">
<META NAME="RATING" CONTENT="general">
<META http-equiv="CONTENT-LANGUAGE" content="English">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="d-style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {font-size: 10px}
-->
</style>
</head>
Should become this:

Quote:
<head>
<META NAME="DESCRIPTION" CONTENT="DVD-and-Media.com supply blank DVD media, duplication, replication services, dvd cases and plastic disc storage products. The largest distributors of dvd cases and boxes in the UK only ever using quality products and the best materials.">
<TITLE>DVD-and-media.com blank dvd recordable disc and case products for duplication and replication</TITLE>
<META NAME="KEYWORDS" CONTENT="dvd media,blank disc,dvdr,dvd cases,replication,cdr">
<META NAME="ROBOTS" CONTENT="FOLLOW,INDEX">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="d-style.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {font-size: 10px}
-->
</style>
</head>
Although that erroneous style should be placed within your external stylesheets.
__________________
-tamecrow | UK SEO Company
Reply With Quote