Quote:
|
there is no attribute "ALIGN" .
|
use css to center elements. - Code: Select all
margin: 0px auto;
Quote:
|
there is no attribute "BGCOLOR" .
|
again you need to use the
css background attribute
- Code: Select all
background: #fff
That will give a white background.
Quote:
|
there is no attribute "TARGET" .
|
the target attribute is no longer valid, it is deprecated. You need to use
JS. Check out
http://www.sitepoint.com/forums/showthread.php?t=385971 for as tutorial on using
JS to open in a new window.
Quote:
|
document type does not allow element "INPUT" here; missing one of "P", "H1", "H2", "H3", "H4", "H5", "H6", "PRE", "DIV", "ADDRESS" start-tag .
|
You need to wrap each input in a <p> tag. That will sort that out.
Quote:
|
end tag for "FORM" which is not finished .
|
You've got the tags in the wrong order.
They need to close in the reverse to what the opened eg...
- Code: Select all
<p><strong><em>Spike</em></strong></p>
rather than
- Code: Select all
<p><strong><em>Spike</p></strong></em>
Quote:
|
there is no attribute "LANGUAGE" .
|
Language is now a deprecated attribute. just lose it form the code.
Quote:
|
there is no attribute "BORDERCOLOR" .
|
Quote:
|
there is no attribute "COLOR" .
|
Quote:
|
there is no attribute "SIZE" .
|
Quote:
|
there is no attribute "FACE" .
|
Quote:
|
element "FONT" undefined .
|
These are all deprecated attributes use the
CSS:
- Code: Select all
border: 1px solid #000
1px black border
- Code: Select all
color: #000;
black text color
- Code: Select all
font-size: 1.2em;
changes font size to 1.2 times its parent (its container)
- Code: Select all
font-family: Arial, Verdana, Sans-Serif;
Changes the font to arial, if arial is not available to verdana, if verdana is not avaialable to another sans-serif font.
That should sort most of them
And look for a tutorial on implementing Flash into
html in a valid manner., That will help you sort out your embedding mess!
Mike