Centrer image sur kompozer

Résolu
antiz Messages postés 5 Date d'inscription   Statut Membre Dernière intervention   -  
antiz Messages postés 5 Date d'inscription   Statut Membre Dernière intervention   -
Bonjour,

je suis novice sur compozer, j'ai du mal avec le code html, je voudrais centrer mes images. images qui sont des liens vers d'autres pages, cette page est le menu en fait. je copie ma source :

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="content-type">
<title>sommaire</title>
</head>
<body>
<a href="web.html"><img
style="border: 0px solid ; width: 140px; height: 74px;"
src="images/web.png" alt="web.png"></a><br>
<a href="print.html"><img
style="border: 0px solid ; width: 160px; height: 77px;"
src="images/print.png" alt="print.png"></a><br>
<a href="workshop.html"><img
style="border: 0px solid ; width: 330px; height: 87px;"
src="images/workshop.png" alt="workshop.png"></a><br>
<a href="happyhunt.html"><img
style="border: 0px solid ; width: 261px; height: 74px;"
src="images/happyhunt.png" alt="happyhunt.png"></a><br>
<a href="mailto:juan.vega@hotmail.fr"><img
style="border: 0px solid ; width: 236px; height: 84px;" alt=""
src="file:///C:/Documents%20and%20Settings/Pauline%20Dos%20Santos/Bureau/index%20site%20web/images/contact.png"></a><br>
<img style="border: 0px solid ; width: 146px; height: 68px;"
alt=""
src="file:///C:/Documents%20and%20Settings/Pauline%20Dos%20Santos/Bureau/index%20site%20web/images/liens.png">
<table border="0" width="800">
</table>
</body>
</html>


merci pour votre aide.
cordialement
thomas.
A voir également:

1 réponse

RAD ZONE Messages postés 5230 Date d'inscription   Statut Contributeur Dernière intervention   1 360
 
SALUT

Tu insert tes images liens dans une " div" centree

voila ta page avec quelques corrections (les images , liens et contact ne sont pas dans la div sur mon exemple , tu fais comme tu veux )

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>  
  <head>    
    <meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">    
    <title>sommaire     
    </title>  
  </head>  
  <body>    
    <div align="center">      
      <a href="web.html">        
        <img style="border: 0px  ; width: 140px; height: 74px;" src="images/web.png" alt="web"></a>      
      <br>      
      <a href="print.html">        
        <img style="border: 0px  ; width: 160px; height: 77px;" src="images/print.png" alt="print"></a>      
      <br>      
      <a href="workshop.html">        
        <img style="border: 0px  ; width: 330px; height: 87px;" src="images/workshop.png" alt="workshop"></a>      
      <br>      
      <a href="happyhunt.html">        
        <img style="border: 0px  ; width: 261px; height: 74px;" src="images/happyhunt.png" alt="happyhunt"></a>      
      <br>    
    </div>    
    <a href="mailto:juan.vega@hotmail.fr">      
      <img style="border: 0px  ; width: 236px; height: 84px;" alt="contact" src="images/contact.png"></a>    
    <br>    
    <img style="border: 0px  ; width: 146px; height: 68px;" alt="liens" src="images/liens.png">    
    <table border="0" width="800">    
    </table>  
  </body>
</html>


RAD
1
antiz Messages postés 5 Date d'inscription   Statut Membre Dernière intervention  
 
MERCI et a bientot
0