html5 - How to get decimal ordered list inside an ordered list in HTML -
this question has answer here:
need decimal kind of listing inner ordred list
1. acsdv dfdfsf 1.1 fasffaf 1.2 wfwe trtt werwr wr
please provide suggestions if any. in advance
simply nest ul tags inside each other so:
<ul> <li>1</li> <ul> <li>1.1</li> <li>1.2</li> <li>1.3</li> </ul> <li>2</li> <ul> <li>2.1</li> <li>2.2</li> <li>2.3</li> </ul> <li>3</li> <ul> <li>3.1</li> <li>3.2</li> <li>3.3</li> </ul>
Comments
Post a Comment