I'm looking to make custom ol in html with inline css.. I want it to be in this format
(1) text1
(2) text2
(3) text 3
what I thinking to do is
<ol style="counter-increment:section; content:(counter(section));">
<li>text1 </li>
<li>text2 </li>
<li>text3 </li>
</ol>
but it's not working at all.