Documento sin título

Me Gusta

HTML

XXXXX

XXXXX

Ejemplo de contadores

Codigo:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
<style>
body {
    counter-reset: section;
}

h2::before {
    counter-increment: section;
    content: "Soy el " counter(section) " encabezado: ";
}
</style>
</head>

<body>
<h1> Hola </h1>
<h2> Como estan </h2>
<h2> Bienvenidos </h2>
<h2> a archilatutoriales </h2>
</body>
</html>

Salida