<!DOCTYPE html>
<html>
 <head>
     <meta charset="UTF-8" />
     <meta name="author" content="Manuele" />
    <title> Formulaire</title>
    <style type="text/css">
          label { display: inline-block;
                     width : 80px; 
                     text-align : left;
                     font-weight: bold;
                     margin-left: 5px;
                    }
          input.bouton { background-color : rgb(102, 102, 255);  
                                color : yellow; }
    </style>
 </head>
 <body>
    <form name="formClient" action="coursPHP-7.php" method="POST">
          
       <label for="nom">Nom</label>
       <input type="text" id="nom" name="nomClient" value="votre nom" size="40" maxlength="150" />
       <br/>
                
       <label>Produit</label>
       <select name="produit">
           <option value="SuperKdo">Super Kdo</option>
           <option value="MegaTruc">Mega Truc</option>
           <option value="BabyFun">Baby Fun</option>
       </select>
       <br/>
                
       <label>Opinion</label>
       <textarea name="opinionClient" cols="40" rows="5" >Votre opinion sur nos produits </textarea>
       <br/>
                
       <input type="submit" value="Envoyer" class="bouton" /> 
       <input type="reset"  value="Nettoyer" class="bouton"  />
    </form>
 </body>
</html>