<!DOCTYPE html>
<html>
<head>
<title>Titre du document </title>
<style>
.p1 {
font-variant-numeric: oldstyle-nums;
}
.p2 {
font-variant-numeric: diagonal-fractions;
}
</style>
</head>
<body>
<h2>Exemple de la propriété font-variant-numeric</h2>
<p class="p1">001528931</p>
<p class="p2">952321313500</p>
</body>
</html>