1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title></title>
<script language="JavaScript" type="text/javascript">
function afficher(theid)
{
document.getElementById(theid).style.display = 'block';
}
function cacher(theid)
{
document.getElementById(theid).style.display = 'none';
}
</script>
<body>
<table width="613" border="0">
<tr>
<td width="210" class="Style5"><div align="left">Avez-vous des enfants ?</div></td>
<td width="202" class="Style5"><div align="center">
<input type="radio" name="enfants" value="OUI" onClick="afficher('enfant')" />
OUI
<input type="radio" name="enfants" value="NON" onClick="cacher('enfant')" />
NON</div></td>
<td width="30" class="Style5"> </td>
<td width="153" class="Style5"> </td>
</tr>
<tr>
<td width="210" height="38" class="Style5"><div align="left">Si oui, le nombre :</div></td>
<td colspan="3" class="Style5"><div id="enfant" style="display: none">
<table width="309" border="0">
<tr>
<td width="82"><div align="center">
<input type="radio" name="nombre" value="1" />
<span class="Style5">1 </span></div></td>
<td width="60"><input type="radio" name="nombre" value="2" />
<span class="Style5"> 2</span></td>
<td width="52"><input type="radio" name="nombre" value="3" />
<span class="Style5">3</span> </td>
<td width="85"><input type="radio" name="nombre" value="4 et +" />
<span class="Style5"> 4 et +</span></td>
</tr>
</table>
</div></td>
</tr>
</table>
</body>
</html> |
Partager