Auteur: lombe (-77.rev.gaoland.net)
Date: 14-05-2008 12:45
[ 2 msg ]
|
Bonjour, je suis en train de créer un site html et il y a une petite chose que je n'arrive a à réaliser :(
Je désire realiser une sorte de carnet d'adresse, plus précisèment, que lorque que la souris survol chaque image, que les AAAA,BBBB soient renseigné et que le tableau soit vide quand elle survol rien.
Etant encore novice (2 jours de html ;) dans le domaine), n'hesitez pas à me dire si je fais fausse route ou si je suis sur la bonne voie ;)
voici mon prog:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
</head>
<body>
<p><img src="Images/Logo.jpg" alt="1" width="159" height="132" /><img src="Images/Balise.jpg" alt="1" width="253" height="95" /><img src="Images/balise2.jpg" alt="1" width="250" height="95" /><img src="Images/balise3.jpg" alt="1" width="331" height="95" /></p>
<p align="center"><a href="Index2.html"><img src="Images/BoutonACCUEIL.jpg" alt="1" width="113" height="27" border="0" /></a> <a href="CFDT.html"><img src="Images/BoutonREJOINDRE.jpg" alt="1" width="113" height="27" border="0" /></a> <a href="CE.html"><img src="Images/BoutonCE.jpg" alt="1" width="113" height="27" border="0" /></a><a href="DP.html"><img src="Images/BoutonDP.jpg" alt="11" width="113" height="27" border="0" /></a><a href="CHSCT.html"><img src="Images/BoutonCHSCT.jpg" alt="1" width="113" height="27" border="0" /></a><a href="CSP.html"><img src="Images/BoutonCSP.jpg" alt="1" width="113" height="27" border="0" /></a><a href="TRACT.html"><img src="Images/BoutonTRACT.jpg" alt="1" width="113" height="27" border="0" /></a><a href="EQUIPE.html"><img src="Images/BoutonEQUIPE.jpg" alt="1" width="113" height="27" border="0" /></a></p>
<hr />
<p align="center"><img src="Images/TitreEQUIPE.jpg" alt="1" width="468" height="60" /></p>
<p align="center"> </p>
<p align="center"><img src="Images/hembise.jpg" alt="1" width="107" height="142" /><img src="Images/richard.jpg" alt="1" width="107" height="142" hspace="50" /><img src="Images/carpentier.jpg" alt="1" width="107" height="142" /><img src="Images/versavel.jpg" alt="1111" width="107" height="142" hspace="50" /><img src="Images/lombard.jpg" width="107" height="142" /><img src="Images/rauner.jpg" alt="1" width="107" height="142" hspace="50" /></p>
<p align="center"><img src="Images/demachy.jpg" alt="1" width="107" height="142" /><img src="Images/leborgne.jpg" alt="1" width="107" height="142" hspace="50" /><img src="Images/leroy.jpg" alt="1" width="107" height="142" /><img src="Images/luc.jpg" alt="1" width="107" height="142" hspace="50" /><img src="Images/rudelle.jpg" alt="1" width="107" height="142" /><img src="Images/sanchez.jpg" alt="1" width="107" height="142" hspace="50" /></p>
<p align="center"> </p>
<div align="center">
<table width="720" border="1">
<tr>
<td width="107"><div align="center"><strong>Nom</strong></div></td>
<td width="239"><div align="center">AAAA</div></td>
<td width="107"><div align="center"><strong>Prénom</strong></div></td>
<td width="239"><div align="center">BBBB</div></td>
</tr>
<tr>
<td><div align="center"><strong>Service</strong></div></td>
<td><div align="center">CCCC</div></td>
<td><div align="center"><strong>Fonction</strong></div></td>
<td><div align="center">DDDD</div></td>
</tr>
<tr>
<td><div align="center"><strong>Collège</strong></div></td>
<td><div align="center">EEEE</div></td>
<td><div align="center"><strong>Téléphone / Bip </strong></div></td>
<td><div align="center">FFFF</div></td>
</tr>
<tr>
<td><div align="center"><strong>Courriel</strong></div></td>
<td><div align="center">GGGG</div></td>
<td><div align="center"><strong>Mandats</strong></div></td>
<td><div align="center">HHHH</div></td>
</tr>
</table>
</div>
<p align="center"> </p>
</body>
</html>
|