Inscrivez-vous ou connectez-vous pour rejoindre votre communauté professionnelle.
<head>
<style>
body {
counter-reset: sectionnn;
}
h2::before {
counter-increment: sectionnn;
content: "xx " counter(section);
}
</style>
</head>
<body>
<h1> CSS </h1>
<h2>HTML </h2>
<h2>PHP</h2>
<h2>JavaScript </h2>
</body>