- <!--A placer dans les balises head:-->
- <script language=javascript>
- function showText(txt)
- {
- document.menubar.affichage.value = txt;
- }
- function hideText()
- {
- document.menubar.affichage.value = "";
- }
- </script>
-
- <!--dans body:-->
- <!--Beginning of the menuBar code-->
- <table style="background=black;border-color=red;border-style=groove;" width=auto% height=auto>
- <tr><td style="color=red;font-family=Futura XBlk BT;" align=center>
- <b>MENU</b><div style="font-color=red;font-size=6;"></div>
- </td></tr>
- <tr><td><hr width=100% color=red></td></tr>
- <tr><td>
- <form name="menubar" style="valign=center;">
- <input type=text size=auto name="affichage" style="color=red;font-size=20;text-align=center;font-family=Futura XBlk BT;background=black;">
- <input type=button onmouseover="showText('premier bouton');" onmouseout="hideText();" value="1" style="color=red;font-size=20;text-align=center;">
- <input type=button onmouseover="showText('second bouton');" onmouseout="hideText();" value="2" style="color=red;font-size=20;text-align=center;">
- <!--ajouter ici les différents boutons que vous voulez en rajoutant des balises input comme ci-dessus-->
- </form>
- </td></tr>
- </table>
- <!--End of the menuBar code-->
<!--A placer dans les balises head:-->
<script language=javascript>
function showText(txt)
{
document.menubar.affichage.value = txt;
}
function hideText()
{
document.menubar.affichage.value = "";
}
</script>
<!--dans body:-->
<!--Beginning of the menuBar code-->
<table style="background=black;border-color=red;border-style=groove;" width=auto% height=auto>
<tr><td style="color=red;font-family=Futura XBlk BT;" align=center>
<b>MENU</b><div style="font-color=red;font-size=6;"></div>
</td></tr>
<tr><td><hr width=100% color=red></td></tr>
<tr><td>
<form name="menubar" style="valign=center;">
<input type=text size=auto name="affichage" style="color=red;font-size=20;text-align=center;font-family=Futura XBlk BT;background=black;">
<input type=button onmouseover="showText('premier bouton');" onmouseout="hideText();" value="1" style="color=red;font-size=20;text-align=center;">
<input type=button onmouseover="showText('second bouton');" onmouseout="hideText();" value="2" style="color=red;font-size=20;text-align=center;">
<!--ajouter ici les différents boutons que vous voulez en rajoutant des balises input comme ci-dessus-->
</form>
</td></tr>
</table>
<!--End of the menuBar code-->