Html

Fermé
fred2712 - 8 oct. 2008 à 15:40
 Utilisateur anonyme - 8 oct. 2008 à 17:33
Bonjour,
volia je debute et viens de creer un site mais j arrive pas a mettre cote a cote mon image(a droite) et un menu deroulant(a gauche) il se decale toujours par dessus ou dessous le menu deroulant est :

<MARQUEE width=150 onmouseover=this.stop(); onmouseout=this.start(); scrollAmount=1 hspace=5 scrollDelay=20 direction=up height=250 style="border-style: solid; border-width: 1px; padding-left: 4px; padding-right: 4px; padding-top: 1px; padding-bottom: 1px" bgcolor="#ffffcc">

<center><H2>INFOS</h2></CENTER>

<p>ce samedi 18 octobre combat de Pierre en Belgique</p>

Demonstration du Club ce samedi</br>


<a href="http://www.lecodejava.com/gbook/gbook.php/">Livre d'or</a><BR>
<a href="http://www.lecodejava.com/linkman/links.php/">Partenaire II</A><br>
<br><center><img src="news.jpg" width=80 height=80></center><br>
<center><img src="punk.gif" width=50 height=78></center><br>

<center><img src="tintin.jpg" width=130 height=130></center>
</MARQUEE>
ET MON IMAGE EST

<p><map name="FPMap0">
<area href="index.html" shape="rect" coords="70, 237, 138, 253">
<area href="entrainements.html" shape="rect" coords="73, 311, 208, 325">
<area href="album1/index.html" shape="rect" coords="278, 344, 347, 356">
<area href="evenements.html" shape="rect" coords="269, 279, 389, 290">
<area href="contacts.html" shape="rect" coords="268, 243, 354, 260">
<area href="archives.html" shape="rect" coords="272, 310, 356, 326">
<area href="entraineur.html" shape="rect" coords="75, 343, 184, 354">
<area href="presse.html" shape="rect" coords="72, 273, 237, 291">
<area href="Eole%20de%20Muaythai.html" shape="rect" coords="73, 366, 224, 389">
<area href="http://muaythaivendinois62.free.fr/mesvideos/flvplayer.php" shape="rect" coords="268, 365, 338, 392">
</map>
<img border="0" src="log9.gif" usemap="#FPMap0" width="417" height="411"></p>

MERCI POUR VOTRE AIDE
FRED
A voir également:

3 réponses

merci de ta reponse comment puis je faire pour mettre dans des cellules de tableau peut tu me faire des exemples merci bcp de ton aide
0
Utilisateur anonyme
8 oct. 2008 à 16:07
Bonsoir,

soit tu mets tout ça dans des cellules de tableau (HTML) ou le meiux est d'utiliser des CSS (mmais là peut être de nouvelles choses à apprendre).
-1
Utilisateur anonyme
8 oct. 2008 à 17:33
bonsoir,

<table>
<tr>
<td>
<p><map name="FPMap0">
<area href="index.html" shape="rect" coords="70, 237, 138, 253">
<area href="entrainements.html" shape="rect" coords="73, 311, 208, 325">
<area href="album1/index.html" shape="rect" coords="278, 344, 347, 356">
<area href="evenements.html" shape="rect" coords="269, 279, 389, 290">
<area href="contacts.html" shape="rect" coords="268, 243, 354, 260">
<area href="archives.html" shape="rect" coords="272, 310, 356, 326">
<area href="entraineur.html" shape="rect" coords="75, 343, 184, 354">
<area href="presse.html" shape="rect" coords="72, 273, 237, 291">
<area href="Eole%20de%20Muaythai.html" shape="rect" coords="73, 366, 224, 389">
<area href="http://muaythaivendinois62.free.fr/mesvideos/flvplayer.php" shape="rect" coords="268, 365, 338, 392">
</map>
</td>
<td>
<img border="0" src="log9.gif" usemap="#FPMap0" width="417" height="411">
</td>
</tr>
</table>

ensuite tu peux aussi donner des tailles aux colonnes :
<td width='xx'> où xx peut être des pixels ou un pourcentage....


-1