TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> :where(ul, ol) li { color: green; font-weight: bold; } </style> </head> <body> <ul> <li>List item 1</li> <li>List item 2</li> </ul> <ol> <li>First item</li> <li>Second item</li> </ol> </body> </html>