Probleme html

Résolu
Bonjour,
je voudrais savoir quelle et l'erreur dans mon code html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title></title>
</head>
<body>
<br>
<img
style="font-weight: bold; position: absolute; right: 275px; bottom: 531px; top: 11px; left: 74px; width: 615px; height: 179px;"
alt=""
src="file:///C:/Documents%20and%20Settings/kent/Bureau/ban2.jpg"><br>
</body>
</html>
svp réponder moi vite
Configuration: Windows XP
Firefox 3.0.5

4 réponses

  1. Contributeur
    alors : plusieurs petites erreurs pas bien graves...

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta content="text/html; charset=ISO-8859-1"
    http-equiv="content-type">
    <title></title>
    </head>
    <body>
    <br> <= tu dois mettre <br/>
    <img
    style="font-weight: bold; position: absolute; right: 275px; bottom: 531px; top: 11px; left: 74px; width: 615px; height: 179px;"
    alt=""
    src="file:///eneleve ca !C:/Documents%20and%20Settings/kent/Bureau/ban2.jpg"><br> <= pareil
    </body>
    </html>

    voila !
    1
    1. Bonjour,

      je pense que cela vient des espaces dans le chemin de limage car si je copie ton code que je mets un chemin sans esapce vers une image de chez moi
      tout va bien !

      <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
      <html>
      <head>
      <meta content="text/html; charset=ISO-8859-1"
      http-equiv="content-type">
      <title></title>
      </head>
      <body>
      <br>
      <img
      style="font-weight: bold; position: absolute; right: 275px; bottom: 531px; top: 11px; left: 74px; width: 615px; height: 179px;"
      alt=""
      src="file:///d:/photos/th.jpg"><br>
      </body>
      </html>
      0
      1. merci beaucoup pour vos reponse cela marche tres bien maintenant
        0
        1. Contributeur
          alors c'est tout bon !!!
          0