HTML :
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Championnat d'Europe des nations </title>
<link rel="stylesheet" type="text/css" href="../css/exercice04compteur.css" /> </head>
<body>
<h1>La France en finale de l'Euro</h1>
<ol>
<li> en France
<ol>
<li> France
</li>
<li> Espagne
</li>
</ol>
</li>
<li> au Bénélux
<ol>
<li> France
</li>
<li> Italie
</li>
</ol>
</li>
<li> en France
<ol>
<li> Portugal
</li>
<li> France
</li>
</ol>
</li>
</ol>
<p>
<br /><br /><br />
</p>
</body>
</html>
CSS :
body {
/*background-color: #FFAAAA; */
}
h1{
text-align:center;
text-decoration : underline;
}
ol{
counter-reset : cpt1 1968;
list-style-type : none;
font-weight: 800;
}
ol li:before{
counter-increment : cpt1 16 ;
content : "Euro " counter(cpt1) " : " ;
}
ol ol{
counter-reset : cpt2;
list-style-type : none;
font-weight: normal;
}
ol li ol li:before{
counter-increment : cpt2 ;
content : "Rang " counter(cpt2) " en " counter(cpt1) " : " ;
}
Ajouter un commentaire
Veuillez vous connecter pour ajouter un commentaire.
Pas encore de commentaires.