<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!-- exemple 29.20 de Deitel -->
<html xmlns="http://www.w3.org/1999/xhtml">

    <head>
        <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
        <title>Création de cookies</title>
    </head>

    <body>
            <h3>Création de <i>cookies</i></h3>
            <form action="ecrireCookies_py.cgi" method="post" id="FormName">
                <table width="154" border="0" cellspacing="2" cellpadding="0">
                    <tr>
                        <td align="right">Nom</td>
                        <td><input type="text" name="nom" size="24"/></td>
                    </tr>
                    <tr>
                        <td align="right">Taille</td>
                        <td><input type="text" name="taille" size="24"/></td>
                    </tr>
                    <tr>
                        <td align="right">Couleur préférée</td>
                        <td><input type="text" name="couleur" size="24"/></td>
                    </tr>
                    <tr>
                        <td colspan="2" align="center"><input type="submit" value="Créer le cookie"/></td>
                    </tr>
                </table>
            </form>
    </body>

</html>