Mettre une image jpg en fond page web (html)?

calamar31 -  
 calamar31 -
Bonjour,
débuttant en html je voudrai mettre une image fixe (jpg) en fond de page
merci

1 réponse

  1. Utilisateur anonyme
     
    Directement en html, comme ceci : <body background="tonimage.jpg">,
    ou alors, avec un css :
    <style> 
    body{ 
        background: url(tonimage.jpg); 
    } 
    </style>
    <body>...
    

    It's Hard to concentrate, but if it can Make you feel better ...(?)
    1
    1. calamar31
       
      merci
      moi c'est html
      0