Got it right thanks to you Jon. This question went unanswered for days. She thought that the meta tag would suffice I guess so she wiped out the title tags from what I could see so great job.
Now only one more problem in TemplateOne. She made a line 3px high across the page. We tried to control color in the Global css file and W3c showed no problem. The problem was though DWCS6 showed blue but when viewed in the browser line showed black. Now that she put in the code in TemplateOne the line is blue
but W3c comes up with an error. Below is CSS code,Template code and W3C error.Maybe someone can tell me how to fix this.
Global Css file :
.horline {
color: #006699;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
TemplateOne:
</table>
<p> </p>
<!-- TemplateBeginEditable name="EditRegion3" -->EditRegion3<!-- TemplateEndEditable -->
<p> </p>
<table width="50%" border="0" align="center">
<tr>
<td class="bodysmall">color swatches go here</td>
</tr>
</table>
<hr align="center" width="100%" size="3px" color="#006699" />
<table width="100%" border="0" align="center" class="table">
<tr>
<td width="25%" class="horrule"><table width="100%" border="0" align="center">
<tr>
<td class="menuhead">Customer Service</td>
</tr>
<tr>
<td class="bodysmall"><a href="../Contact_Us.html">Contact Us</a></td>
</tr
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
W3C INFO:
<hr align="center" width="100%" size="3px" color="#006699" />
✉
You have used the attribute named above in your document, but the document type you are using does
not support that attribute for this element. This error is often caused by incorrect use of the
"Strict" document type with a document that uses frames (e.g. you must use the "Transitional"
document type to get the "target" attribute), or by using vendor proprietary extensions such as
"marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are
using, as an undefined element will have no supported attributes; in this case, see the element-
undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-
case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of
this attribute. If you received this error when using the <embed> element to incorporate flash media
in a Web page, see the FAQ item on valid flash.