As I clean up my code with the help of http://validator.w3.org/
I've encountered the following errors:
Line 143, Column 102: Invalid value 280px for the height attribute on the iframe element: Expecting a number but found p instead. …crea8tion.com/PP/usercapture/index.php" scrolling="no" height="280px"> The correct syntax for non-negative integers is one or more digits from 0 to 9. For example, 42 and 0 are acceptable, but -273 is not.
-
Error Line 143, Column 102: The scrolling attribute on the iframe element is no longer supported. Instead, use CSS. …crea8tion.com/PP/usercapture/index.php" scrolling="no" height="280px">
Line 282, Column 90: The character & did not initiate a character reference. (The & should have been escaped as &.) …any/332992?trk=vsrp_companies_res_name&trkInfo=VSRPsearchId%3A2433719413894427…
This is the code causing the issues:
<iframe src="http://crea8tion.com/PP/usercapture/index.php" scrolling="no" height="280px"></iframe>
I'm unsure how to go about fixing these problems?