Error In Inline Style Application

What is the source of the error showing up in VSC in the following line?

Screen Shot 2021-01-14 at 11.41.58 AM

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
 <style>
      img   {
      float: right;
      }
 </style>
  
</head>

<body>
    <h1>Posthaste: Only one Canadian province made the top 10 of North America's most competitive oil patches</h1>
    <p>Saskatchewan was the only Canadian jurisdiction to make the top 10 of the five Canadian provinces and 16 American
        states included in the Fraser Institute study and it ranks 8th. PHOTO BY POSTMEDIA
    </p>
    <p>
        <img src="http://radiouruguay.uy/wp-content/uploads/2020/12/vacas_sequia_ah_rantunez-360x240.jpg " alt="Uruguay" style="height:300px,margin-right:50px;">
        The Fraser Institute annual survey, conducted between May and August of 2020, polls senior executives in the oil and gas industry on policies that affect investment in Canada and the United States. Barriers the study identifies include high tax rates, regulatory obligations and the cost of compliance, uncertainty over environmental regulations, political stability and security. Fraser says the purpose of the study is to identify policy in regions that investors say needs improvement.
    </p>
</body>

</html>
<!-- -->

, should be ;. this is another case where the error is actually earlier in the code where the parser doesn’t realize there’s a problem before its too late

excellent! thanks!