|
Posted by Beauregard T. Shagnasty on 11/30/67 11:58
Mike wrote:
> Hi folks, I attempted to upload my simple website using IE and ftp and
> received an error. Below is the top section of my code, below this is
> the error IE gave me. Any help on how to correct this error would be
> greatly appreciated! Mike Salish
>
> The top part of my HTML coding
>
> <?xml version="1.0" encoding="utf-8"?>
Then, after you change your password, remove the above first line, fix
the img element error, and resend the page to your web server.
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
Doctype should be exactly as you show it here, uppercase and all.
<snip>
> End tag 'div' does not match the start tag 'IMG'. Error processing
> resource 'ftp://u40859955-mikesal:ab223355@bottlepal.com...
>
> <div style="text-align: center;"><IMG
> SRC="http://i100.photobucket.com/albums/m16/mikesal3731/57b9272a.jpg"
> ALT="lo...
Image elements need to have a closing slash for XHTML, as do several
other elements.
<img src="..." alt="..." height="nnnpx" width="nnnpx" />
--
-bts
-Motorcycles defy gravity; cars just suck.
[Back to original message]
|