back
Code
CSS
HTML
Web
body{
counter-reset: theCounter 2;
}

p{
counter-increment: theCounter;
}

#p315::after{
content:counter(theCounter);
}