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 55 56 57 58
| <table width="800" border="0" cellspacing="0" cellpadding="0">
<tr>-->ouverture du grand tr
<!---Ouverture de ma 1er grande cellule ---->
<td>
<tr>
<td>Nom</td>
<td><input type="text" name="7" maxlength="150" width="180"/></td>
</tr>
<tr>
<td>Quel est lunivers : </td>
<td>
<select name="2">
<option value="0"></option>
<option value="1">Hihi hihi</option>
<option value="2">Luxe </option>
<option value="3">France</option>
</select>
</td>
</tr>
<tr>
<td>si autres merci de saisir le secteur </td>
<td><input type="text" name="3" maxlength="150" width="180"/></td>
</tr>
</td> --->Fermeture de ma grande cellule
<!---- Ouverture de ma 2eme grande cellue---->
<td width>
<tr>
<td>Localisation </td>
<td><input type="text" name="7" maxlength="150" width="180"/></td>
</tr>
<tr>
<td> votre âge ?</td>
<td><input type="text" name="9" maxlength="150" width="180"/></td>
</tr>
<tr>
<td height="25">Période : </td>
<td>
de
<select name="10">
<option valus="0"></option>
<%for i = 1950 to 2008%>
<option value="<%=i%>"><%=i%></option>
<%next%>
</select>
à
<select name="11">
<option value="0"></option>
<%for i = 1950 to 2008%>
<option value="<%=i%>"><%=i%></option>
<%next%>
</select>
</td>
</tr>
</td>---> Fermeture de ma deuxième cellule
</tr>---> Fermeture du grand tr |
Partager