IE9 not showing a jpg

I have found that the jpg is showing in all other browsers except IE. This is frustrating me because for the company i work for i have to have it running on IE.

Please help - see code below

<!DOCTYPE html>
<html>
<head>
<title>Intranet</title>

<meta http-equiv=“Content-Type” content=“text/html; charset=utf-8” />
<meta name=“description” content=“Intranet Home Page”/>
<meta name=“author” content=“Leanne Taylor” />
<meta name=“robots” content=“index, follow” />

<link href=“CSS/layout.css” rel=“stylesheet” type=“text/css” media=“screen” />
<link href=“CSS/links.css” rel=“stylesheet” type=“text/css” media=“screen” />
</head>

<body background=“images/backgroundpic.jpg” id=“index”>
<br></br>

<div id=“homewrapper”>
<br></br>
<img src=“logo/newlogo.jpg” alt=“Logo” title=“Logo” width=“200px” height “192px” class=“floatImageLeft” />
</div>

It’s the logo jpg i am referring to by the way

Thanks

For starters don’t place the ‘px’ unit in the width=“200” and height=“192” you don’t use it in markup and the height attribute is missing an = equals sign.

Thank u so much - it has been racking my brain for days - it is now working

No problem, a nice quick solution. :slight_smile: