Online Html Editor

<!DOCTYPE html> <html> <head> <style> body { /* Set a counter starting from 6*/ counter-set: numcounter 5; } h3::before { counter-increment: numcounter; content: "Chapter " counter(numcounter) ". "; } </style> </head> <body> <h2> CSS counter-set property </h2> <h3> Python </h3> <h3> Matplotlib </h3> <h3> Numpy </h3> <h3> Scipy </h3> <h3> Scikit-learn </h3> <h3> Open CV </h3> </body> </html>