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 59 60 61 62 63 64 65
| <!DOCTYPE html>
<!-- saved from url=(0013)about:internet -->
<html>
<head>
<link rel="stylesheet" href="Form.css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Matrice de caractérisation</title>
</head>
<body>
<script type="text/javascript" src="form.js"></script>
<table>
<th align="left">INFOS</th>
<th>CHOIX</th>
<tr>
<td>PAYS ORIGINAIRE</td>
<td>
<Form>
<SELECT name="Pays" size="1">
<OPTION>
<OPTION>France
<OPTION>Belgique
<OPTION>USA
<OPTION>UK
</SELECT>
</Form>
</td>
</tr>
<tr>
<td>PAYS DE RESIDENCE</td>
<td>
<Form>
<SELECT name="Pays1" size="1">
<OPTION>
<OPTION>France
<OPTION>Belgique
<OPTION>USA
<OPTION>UK
</SELECT>
</Form>
</td>
</tr>
<tr>
<td>AGE</td>
<td>
<Form>
<SELECT name="AGE" size="1">
<OPTION>
<OPTION>15-25
<OPTION>25-40
<OPTION>40-50
<OPTION>50-60
</SELECT>
</Form>
</td>
</tr>
</table>
<form id=form1 class="displayondemand">
<label>Résultat</label>
<output name=ress type=text value="">
<br>
<input type=button value=Valider onClick="Resul()" />
<input type=reset value=Annuler>
</form> |
Partager