By careful editing and using the W3C validation, I have been able to clean up the code on some pages. However, I'm not sure what replaces the deprecated code in the following example:
<form name="FormName" onsubmit="Redirect()" action="" method="post"><p align="left"><input id="FormFieldName2"
size="10" name="FormFieldName"><input name="GO" type=
"submit" class="font5" id="GO" value="GO"> <input type="reset" value="Reset" name="Reset"></p>
It tells me: there is no attribute width and there is no attribute height. For awhile, I was also getting an error message that said name is not an attribute, but now it is working. Most of my other problems were the lack of ALT and SUMMARY tags. Thanks.
<form name="FormName" onsubmit="Redirect()" action="" method="post"><p align="left"><input id="FormFieldName2"
size="10" name="FormFieldName"><input name="GO" type=
"submit" class="font5" id="GO" value="GO"> <input type="reset" value="Reset" name="Reset"></p>
It tells me: there is no attribute width and there is no attribute height. For awhile, I was also getting an error message that said name is not an attribute, but now it is working. Most of my other problems were the lack of ALT and SUMMARY tags. Thanks.