HTML - Exemples de divs
by M.V. 414
HTML
<div id="entete">
<h1>MonTitre</h1>
</div>
<div id="Menu">
<a href="index.html">Accueil</a>
</div>
<div id="Contenu">
<p>
Exemple
</p>
</div>
CSS
h1, p {margin-top:0;
margin-bottom:0;}
#entete {background-color:#ffaaaa;}
#Menu {background-color:lightgrey;}
#Contenu {background-color:#eeeeff; }