Twist, I did what you said and this is what I got back:
<div id="counter"><span class="countertext">you are visitor</span>
<img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/digits/9.gif> <span class="countertext"> thank you.</span> </div>
</div>
And these are the errors (15)on 1 line;
Line 128, column 15: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
<img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/
Line 128, column 22: NET-enabling start-tag not immediately followed by null end-tag
<img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/
Line 128, column 22: required attribute "alt" not specified
<img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/
The attribute given above is required for an element that you've used, but you have omitted it. For instance, in most HTML and XHTML document types the "type" attribute is required on the "script" element and the "alt" attribute is required for the "img" element.
Typical values for type are type="text/css" for <style> and type="text/javascript" for <script>.
Line 128, column 22: end tag for "img" omitted, but OMITTAG NO was specified
<img src=images/digits/1.gif ><img src=images/digits/6.gif><img src=images/
You may have neglected to close a tag, or perhaps you meant to "self-close" a tag; that is, ending it with "/>" instead of ">".
Line 128, column 6: start tag was here
<img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/
Line 128, column 44: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
...img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/digi
Line 128, column 51: NET-enabling start-tag not immediately followed by null end-tag
...=images/digits/1.gif><img src=images/digits/6.gif><img src=images/digits/9.gi
Line 128, column 51: required attribute "alt" not specified
...=images/digits/1.gif><img src=images/digits/6.gif><img src=images/digits/9.gi
Line 128, column 51: end tag for "img" omitted, but OMITTAG NO was specified
...=images/digits/1.gif><img src=images/digits/6.gif><img src=images/digits/9.gi
Line 128, column 35: start tag was here
<img src=images/digits/1.gif><img src=images/digits/6.gif><img src=images/
Line 128, column 73: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
...img src=images/digits/6.gif><img src=images/digits/9.gif> <span class="c
Line 128, column 80: NET-enabling start-tag not immediately followed by null end-tag
...=images/digits/6.gif><img src=images/digits/9.gif> <span class="countert
Line 128, column 80: required attribute "alt" not specified
...=images/digits/6.gif><img src=images/digits/9.gif> <span class="countert
Line 128, column 80: end tag for "img" omitted, but OMITTAG NO was specified
...=images/digits/6.gif><img src=images/digits/9.gif> <span class="countert
Line 128, column 64: start tag was here
...s/1.gif><img src=images/digits/6.gif><img src=images/digits/9.gif> <span
thanks for your time.