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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<style type="text/css">
* { margin:0px; padding:0px; }
body { background: #e6e6e8 url("http://127.0.0.1/gestelle/images/fond.gif") repeat-x top left; }
#titreForm { font:bold 1.1em arial, hevetica, sans-serif; color:#000; background:url("http://127.0.0.1/gestelle/images/t_titre.gif"); padding:0.5em; }
#tabsH { width:100%; font-size:93%; line-height:normal; font:bold 11px/1.5em Verdana; }
#tabsH ul { padding:10px 10px 30px 0; list-style:none; }
#tabsH li { display:inline; }
#tabsH a { float:left; background: url("http://127.0.0.1/gestelle/images/fond_menu_off.gif") repeat-x top left; margin:1; display:block; padding:5px 15px 4px 6px; color:#777; text-decoration:none; }
#tabsH a:hover { color:#fff; background:none; background-position:-42px; }
#tabsH #current a { background:none; color:#777; }
/*** Mise en forme du pieds ***/
#piedForm { /*** Mise en forme du pied de formulaire ***/
font: bold 1.1em verdana, arial, hevetica, sans-serif;
text-align: right; /*** Les boutons sont alignés à droite ***/
color: #fff;
margin: 0px;
padding: .5em;
}
#piedForm input {
font-weight: bold; /*** Pour améliorer la lisibilité des boutons ***/
margin-left: 1em;
}
/*** Mise en forme du corps ***/
#corpForm { /*** Mise en fome du corp du formulaire (bordure, couleur du fond...) ***/
background: #cccccc url(http://127.0.0.1/gestelle/images/fond_form.gif) repeat-x top left; /*** Ne pas toucher à la couleur de fond elle est la continuité de l'image de fond lorsqu'elle se termine ***/
border: 1px solid black;
color: #000000;
margin: 0px;
padding: 1em;
}
#corpForm fieldset#formulaire label { /*** Mise en forme des intitulés de champs ***/
float: left; /*** Très important, ne pas suprimer ! ***/
width: 20%; /*** Les intitulés prennent x% de la largeur totale du formulaire... ***/
text-align: right; /*** ... et ils sont alignés à droite... ***/
margin: 0px;
padding: 0 .5em 0 0px;
line-height: 1.8; /*** ... et centrés verticalement. ***/
}
</style>
</head>
<body>
<div id="tabsH">
<ul>
<li id="current"><a>Exercices</a></li>
<li><a href="...">Classes</a></li>
<li><a href="...">Catégories</a></li>
<li><a href="...">Sous-Catégories</a></li>
<li><a href="...">Listes</a></li>
</ul>
</div>
<form id="recherche" action="" method="post">
<div id="titreForm">Liste des Exercices</div>
<div id="corpForm">
<fieldset id="formulaire">
<legend>Description</legend>
<p>
<label for="numcart">N° de carte :</label>
<input type="text" name="numcart" id="numcart" size="10">
</p>
<p>
<label for="libelle">Libellé :</label>
<input type="text" name="libelle" id="libelle" size="50">
</p>
</fieldset>
</div>
<div id="piedForm">
<input type=submit name="Valider" value="Valider">
</div>
</form>
</body>
</html> |