Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.93 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
  3. <head>
  4.      <title>Ex2</title>
  5.      <meta name="description" content="Description de ma page web." />
  6.      <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7.      <link href="../css/css_2.css" rel="stylesheet" type="text/css" />
  8. </head>
  9. <body> 
  10.         <h1> Merci de payer la ou les cotisation(s) selon le(s) sport(s)</h1>
  11.         <fieldset>
  12.         <legend>Choix du sport</legend>
  13.         <form method="post" action="traitement1.php">
  14.         <input type="checkbox" name="Handball" id="Handball" checked /> <label for="Handball">Handball</label>
  15.         <br />
  16.         <input type="checkbox" name="Football" id="Football" /> <label for="Football">Football</label>
  17.         <br />
  18.         <input type="checkbox" name="Baseball" id="Baseball" /> <label for="Baseball">Baseball</label>
  19.         <br />
  20.         <input type="checkbox" name="Basket-ball" id="Basket-ball" checked /> <label for="Basket-ball">Basket-ball</label>
  21.         </form>
  22.         </fieldset>
  23.         <hr />
  24.        
  25.         <fieldset>
  26.         <legend class="paiement">Paiement par:</legend>
  27.         <form method="post" action="traitement2.php">
  28.         <br />
  29.         <input type="radio" name="CB" id="CB" checked /> <label for="CB">CB</label>
  30.         <span class="code">Votre code : </span>
  31.         <input type="text" name="code" id="code" size="10" />      
  32.         <br />
  33.         <input type="radio" name="Liquide" id="Liquide" /> <label for="Liquide">Liquide</label>
  34.         <br />
  35.         <input type="radio" name="Cheque" id="Cheque" /> <label for="Cheque">Chèque</label>    <br />
  36.         </form>
  37.         </fieldset>
  38.         <hr />
  39.        
  40.         <fieldset>
  41.         <legend class="bouton">Zone bouton :</legend>
  42.         <form method="post" action="traitement3.php">
  43.         <div class="val">
  44.         <label for="valid"><input type="submit" value="Valider" /></label>
  45.        <label for="res"><input type="reset" value="Effacer" /></label>
  46.        </div>
  47.         </fieldset>
  48. </body>
  49. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement