Contoh:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<!DOCTYPE HTML> <html> <head> <title>Style List untuk Bulleted List dan Numbered List HTML 5 | emerer.com </title> </head> <body> <h1>Menggunakan Bulleted List / tag ul (unorder list)</h1> Ada 3 pilihan: disc, circle dan square <br> <h2> Makanan Favorit Rasid (circle)</h2> <ul style="list-style-type: circle"> <li>Sate <li>Bakso <li>Soto </ul> <h1>Menggunakan Numbered List / tag ol (order list)</h1> Ada 7 pilihan: <br> decimal : 1,2,3 <br> decimal-leading zero : 01, 02,03<br> lower-roman : i,ii,iii <br> upper-roman : I,II,III<br> lower-alpha : a,b,c,<br> upper-alpha : A, B, C<br> none <br> <h2> Minuman Favorit Rasid (lower-roman)</h2> <ol style="list-style-type: lower-roman"> <li>Sate <li>Bakso <li>Soto </ol> </body> </html> |