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

p{
counter-increment: counterName;
}

#p314::after{
content:counter(counterName);
}